Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nithyanatarajan/local-kubernetes


https://github.com/nithyanatarajan/local-kubernetes

Last synced: 7 days ago
JSON representation

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)