diff --git a/dev-containers/kubernetes-helm-container/README.md b/dev-containers/kubernetes-helm-container/README.md index 410d46d103..753c1d1b1e 100644 --- a/dev-containers/kubernetes-helm-container/README.md +++ b/dev-containers/kubernetes-helm-container/README.md @@ -1,6 +1,6 @@ # Kubernetes and Helm Container -When building an app that deploys into a container-based environment in production, you may want to sandbox your development in a dev container while without sacrificing your ability to build and deploy your application into a local or remote [Kubernetes](https://kubernetes.io/) cluster. This example illustrates how you can use the needed CLIs, the [Kubernetes](https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools) extension, and the [Docker](https://marketplace.visualstudio.com/items?itemName=PeterJausovec.vscode-docker) extension from inside a dev container to meet this need. +When building an app that deploys into a container-based environment in production, you may want to sandbox your development in a dev container without sacrificing your ability to build and deploy your application into a local or remote [Kubernetes](https://kubernetes.io/) cluster. This example illustrates how you can use the needed CLIs, the [Kubernetes](https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools) extension, and the [Docker](https://marketplace.visualstudio.com/items?itemName=PeterJausovec.vscode-docker) extension from inside a dev container to meet this need. The dev container accomplishes this by including the needed CLIs ([kubectl](https://kubernetes.io/docs/reference/kubectl/overview/), [Helm](https://helm.sh), Docker) and syncing your local Kubernetes config (`~/.kube/config` or `%USERPROFILE%\.kube\config`) into the container with the necessary modifications to allow it to interact with anything running on your local machine. This includes interacting with a Kubernetes cluster managed through Docker Desktop or a local Minikube install.