From af6cdabe9b68c311288939fa3fa245d72d6772f4 Mon Sep 17 00:00:00 2001 From: makocchi Date: Tue, 3 Jul 2018 09:53:19 +0900 Subject: [PATCH] use official homebrew package name (#9255) --- content/en/docs/tasks/tools/install-kubectl.md | 2 +- content/en/docs/tutorials/hello-minikube.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tasks/tools/install-kubectl.md b/content/en/docs/tasks/tools/install-kubectl.md index 73a2de1d11d..d95dc654d1e 100644 --- a/content/en/docs/tasks/tools/install-kubectl.md +++ b/content/en/docs/tasks/tools/install-kubectl.md @@ -61,7 +61,7 @@ kubectl is available as a [snap](https://snapcraft.io/) application. 1. If you are on macOS and using [Homebrew](https://brew.sh/) package manager, you can install with: - brew install kubectl + brew install kubernetes-cli 2. Run `kubectl version` to verify that the version you've installed is sufficiently up-to-date. diff --git a/content/en/docs/tutorials/hello-minikube.md b/content/en/docs/tutorials/hello-minikube.md index 8284081f480..edd5c9a31dc 100644 --- a/content/en/docs/tutorials/hello-minikube.md +++ b/content/en/docs/tutorials/hello-minikube.md @@ -82,7 +82,7 @@ Use Homebrew to download the `kubectl` command-line tool, which you can use to interact with Kubernetes clusters: ```shell -brew install kubectl +brew install kubernetes-cli ``` Determine whether you can access sites like [https://cloud.google.com/container-registry/](https://cloud.google.com/container-registry/) directly without a proxy, by opening a new terminal and using @@ -183,8 +183,10 @@ sure you are using the Minikube Docker daemon: eval $(minikube docker-env) ``` +{{< note >}} **Note:** Later, when you no longer wish to use the Minikube host, you can undo this change by running `eval $(minikube docker-env -u)`. +{{< /note >}} Build your Docker image, using the Minikube Docker daemon (mind the trailing dot):