From feff3c4a7f7425e5cf947d72663592564299d0e5 Mon Sep 17 00:00:00 2001 From: paulbattagliag Date: Sun, 6 May 2018 11:43:50 -0700 Subject: [PATCH] Fixed #8076 (#8344) * Fixed #8076 Per bug 8076, added info about error message and workaround to reinstall Homebrew. * Add note formatting --- .../stateless-application/hello-minikube.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tutorials/stateless-application/hello-minikube.md b/content/en/docs/tutorials/stateless-application/hello-minikube.md index 69761690d0..084046ba91 100644 --- a/content/en/docs/tutorials/stateless-application/hello-minikube.md +++ b/content/en/docs/tutorials/stateless-application/hello-minikube.md @@ -25,8 +25,21 @@ Minikube provides a simple way of running Kubernetes on your local machine for f {{% capture prerequisites %}} -* For OS X, you need [Homebrew](https://brew.sh) to install the `xhyve` -driver. +* For OS X, you need [Homebrew](https://brew.sh) to install the `xhyve` driver. + + {{< note >}} + **Note:** If you see the following Homebrew error when you run `brew update` after you update your computer to MacOS 10.13: + + ``` + Error: /usr/local is not writable. You should change the ownership + and permissions of /usr/local back to your user account: + sudo chown -R $(whoami) /usr/local + ``` + You can resolve the issue by reinstalling Homebrew: + ``` + /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" + ``` + {{< /note >}} * [NodeJS](https://nodejs.org/en/) is required to run the sample application.