Skip to content

Instantly share code, notes, and snippets.

@dwinurhadia
Forked from inadarei/minikube-sierra.md
Created October 20, 2020 01:57
Show Gist options
  • Select an option

  • Save dwinurhadia/4b468ff9b9d7f5a1e3c7ea1e9c05b12c to your computer and use it in GitHub Desktop.

Select an option

Save dwinurhadia/4b468ff9b9d7f5a1e3c7ea1e9c05b12c to your computer and use it in GitHub Desktop.

Revisions

  1. @inadarei inadarei revised this gist May 4, 2017. 1 changed file with 10 additions and 1 deletion.
    11 changes: 10 additions & 1 deletion minikube-sierra.md
    Original file line number Diff line number Diff line change
    @@ -11,4 +11,13 @@ $ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.18.0/min
    $ curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.6.0/bin/darwin/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/

    $ minikube start --logtostderr --show-libmachine-logs --vm-driver=xhyve
    ```
    ```

    If you are behind a proxy:

    ```
    $ minikube start --docker-env HTTP_PROXY=$http_proxyT \
    --docker-env HTTPS_PROXY=$https_proxy
    ```

    where $http_proxy is full URI like `http://proxy.example.com:8088`
  2. @inadarei inadarei created this gist May 4, 2017.
    14 changes: 14 additions & 0 deletions minikube-sierra.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    Prerequisite: latest Docker for Mac on MacOS Sierra

    ```bash
    $ brew update
    $ brew install --HEAD xhyve
    $ brew install docker-machine-driver-xhyve
    $ sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
    $ sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve

    $ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.18.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
    $ curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.6.0/bin/darwin/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/

    $ minikube start --logtostderr --show-libmachine-logs --vm-driver=xhyve
    ```