Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update docs for minikube registry auth #3986

Merged
merged 2 commits into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/k8s-plugins/local-k8s/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ Once Minikube and the appropriate driver for your OS are installed, you can star
minikube start --vm-driver=<your vm driver> # e.g. hyperkit on macOS
```

If you are working in a team and need to use an external registry, you can [configure Garden with an external image registry](https://docs.garden.io/kubernetes-plugins/remote-k8s/configure-registry) such as ECR. Alternatively, you can enable Minikube's `registry-creds` addon, by following these steps:

1. Make sure Minikube is running by typing `minikube start`

2. Then run minikube `addons configure registry-creds`

3. Select applicable container registry

4. Enter credentials

5. Make sure you run minikube `addons enable registry-creds`

Minikube should now be able to authenticate with your chosen cloud provider.

### kind

For kind installation instructions, see the [official docs](https://kind.sigs.k8s.io/docs/user/quick-start/).
Expand Down