Last active
October 19, 2018 15:49
-
-
Save pvsousalima/1b87e18544c773c5775e69c4b800a8ab to your computer and use it in GitHub Desktop.
Install gcloud and kubectl on a mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz > /tmp/google-cloud-sdk.tar.gz | |
mkdir -p ~/gcloud \ | |
&& tar -C ~/gcloud -xvf /tmp/google-cloud-sdk.tar.gz \ | |
&& ~/gcloud/google-cloud-sdk/install.sh -q; | |
brew install kubernetes-cli | |
gcloud components install docker-credential-gcr -q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment