Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nithyanatarajan/local-kubernetes
https://github.com/nithyanatarajan/local-kubernetes
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nithyanatarajan/local-kubernetes
- Owner: nithyanatarajan
- Created: 2021-02-23T06:58:15.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-23T11:01:43.000Z (almost 4 years ago)
- Last Synced: 2024-11-08T12:51:10.438Z (2 months ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# local-kubernetes
## Setup Local environment variables
1. Install [direnv](https://github.com/direnv/direnv)
2. Copy `.envrc.sample` to `.envrc`
3. Run `direnv allow .`## Setup local registry
```bash
./create-registry.sh
```## Test setup with local registry
```bash
docker pull nginx:latest
docker tag nginx:latest localhost:"${REG_PORT}"/nginx:latest
docker push localhost:"${REG_PORT}"/nginx:latest
``````bash
curl -s localhost:"${REG_PORT}"/v2/_catalog | jq
```## Cluster setup
1. [Kind](kind/README.md)
2. [K3s](k3s/README.md)