Difference between revisions of "GCP/gcloud cli"
< GCP
Jump to navigation
Jump to search
(→Verify) |
|||
| Line 114: | Line 114: | ||
= Verify = | = Verify = | ||
<source lang=bash> | <source lang=bash> | ||
# | # List accounts whose credentials are stored on the local system: | ||
gcloud auth list | gcloud auth list | ||
Credentialed Accounts | Credentialed Accounts | ||
ACTIVE ACCOUNT | ACTIVE ACCOUNT | ||
* | * user1@gmail.com | ||
# | # List the properties in your active SDK configuration: | ||
gcloud config list | gcloud config list | ||
[core] | [core] | ||
account = | account = user1@gmail.com | ||
disable_usage_reporting = False | disable_usage_reporting = False | ||
project = | project = responsive-sun-123456 | ||
# List multiple so called 'named configurations' | # List multiple so called 'named configurations' | ||
gcloud config configurations list | gcloud config configurations list | ||
NAME IS_ACTIVE ACCOUNT | NAME IS_ACTIVE ACCOUNT PROJECT DEFAULT_ZONE DEFAULT_REGION | ||
default True | default True user1@gmail.com responsive-sun-123456 europe-west1-b europe-west1 | ||
# | # View information about your Cloud SDK installation and the active SDK configuration: | ||
gcloud info | gcloud info | ||
Google Cloud SDK [253.0.0] | Google Cloud SDK [253.0.0] | ||
| Line 160: | Line 160: | ||
Active Configuration Path: [/home/vagrant/.config/gcloud/configurations/config_default] | Active Configuration Path: [/home/vagrant/.config/gcloud/configurations/config_default] | ||
Account: [ | Account: [user1@gmail.com] | ||
Project: [responsive-sun-123456] | Project: [responsive-sun-123456] | ||
| Line 166: | Line 166: | ||
[core] | [core] | ||
project: [responsive-sun-123456] | project: [responsive-sun-123456] | ||
account: [ | account: [use1@gmail.com] | ||
disable_usage_reporting: [True] | disable_usage_reporting: [True] | ||
| Line 174: | Line 174: | ||
git: [git version 2.17.1] | git: [git version 2.17.1] | ||
ssh: [OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n 7 Dec 2017] | ssh: [OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n 7 Dec 2017] | ||
</source> | |||
Short verification | |||
<source lang=bash> | |||
$ gcloud info | grep '\(Google\|Account\|Project\)' | |||
Google Cloud SDK [277.0.0] | |||
Account: [user1@gmail.com] | |||
Project: [responsive-sun-123456] | |||
</source> | </source> | ||
Revision as of 01:08, 27 January 2020
Install gcloud cli
# Ubuntu 18.04 LTS; Jan 2020 sudo apt-get install apt-transport-https ca-certificates gnupg # Add the Cloud SDK distribution URI as a package source echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list # Import the Google Cloud Platform public key curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - # Update the package list and install the Cloud SDK sudo apt-get update && sudo apt-get install google-cloud-sdk # Additional packages are available: # google-cloud-sdk-app-engine-python # google-cloud-sdk-app-engine-python-extras # google-cloud-sdk-app-engine-java # google-cloud-sdk-app-engine-go # google-cloud-sdk-bigtable-emulator # google-cloud-sdk-cbt # google-cloud-sdk-cloud-build-local # google-cloud-sdk-datalab # google-cloud-sdk-datastore-emulator # google-cloud-sdk-firestore-emulator # google-cloud-sdk-pubsub-emulator # kubectl # <- interesting YEAH!
Initialize
# Verify SDK version and connected account & project
$> gcloud info | grep '\(Google\|Account\|Project\)'
Google Cloud SDK [277.0.0]
Account: [None]
Project: [None]
# Initialize
$> gcloud init
Welcome! This command will take you through the configuration of gcloud.
Your current configuration has been set to: [default]
You can skip diagnostics next time by using the following flag:
gcloud init --skip-diagnostics
Network diagnostic detects and fixes local network connection issues.
Checking network connection...done.
Reachability Check passed.
Network diagnostic passed (1/1 checks passed).
You must log in to continue. Would you like to log in (Y/n)? y
Go to the following link in your browser:
https://accounts.google.com/o/oauth2/auth?redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&prompt=select_account&response_type=code&client_id=12345678901.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcloud-platform+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fappengine.admin+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcompute+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Faccounts.reauth&access_type=offline
Enter verification code: *****
You are logged in as: [example.email@gmail.com].
Pick cloud project to use:
[1] responsive-sun-123456
[2] Create a new project
Please enter numeric choice or text value (must exactly match list
item): 1
Your current project has been set to: [responsive-sun-123456].
Not setting default zone/region (this feature makes it easier to use
[gcloud compute] by setting an appropriate default value for the
--zone and --region flag).
See https://cloud.google.com/compute/docs/gcloud-compute section on how to set
default compute region and zone manually. If you would like [gcloud init] to be
able to do this for you the next time you run it, make sure the
Compute Engine API is enabled for your project on the
https://console.developers.google.com/apis page.
# .-note .boto file
Created a default .boto configuration file at [/home/vagrant/.boto]. See this file and
[https://cloud.google.com/storage/docs/gsutil/commands/config] for more
information about configuring Google Cloud Storage.
Your Google Cloud SDK is configured and ready to use!
* Commands that require authentication will use example.email@gmail.com by default
* Commands will reference project `responsive-sun-123456` by default
Run `gcloud help config` to learn how to change individual settings
This gcloud configuration is called [default]. You can create additional configurations if you work with multiple accounts and/or projects.
Run `gcloud topic configurations` to learn more.
Some things to try next:
* Run `gcloud --help` to see the Cloud Platform services you can interact with. And run `gcloud help COMMAND` to get help on any gcloud command.
* Run `gcloud topic --help` to learn about advanced features of the SDK like arg files and output formatting
# Set project default Compute Engine zone, [17] europe-west1-b
$> gcloud config set compute/zone europe-west1-b
# Set project default Compute Engine region
$> gcloud config set compute/region europe-west1
Install kubectl from Google
$> gcloud components install kubectl ERROR: (gcloud.components.install) You cannot perform this action because the Cloud SDK component manager is disabled for this installation. You can run the following command to achieve the same result for this installation: sudo apt-get install kubectl
Verify
# List accounts whose credentials are stored on the local system:
gcloud auth list
Credentialed Accounts
ACTIVE ACCOUNT
* user1@gmail.com
# List the properties in your active SDK configuration:
gcloud config list
[core]
account = user1@gmail.com
disable_usage_reporting = False
project = responsive-sun-123456
# List multiple so called 'named configurations'
gcloud config configurations list
NAME IS_ACTIVE ACCOUNT PROJECT DEFAULT_ZONE DEFAULT_REGION
default True user1@gmail.com responsive-sun-123456 europe-west1-b europe-west1
# View information about your Cloud SDK installation and the active SDK configuration:
gcloud info
Google Cloud SDK [253.0.0]
Platform: [Linux, x86_64] ('Linux', 'u18gui-2', '4.15.0-54-generic', '#58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019', 'x86_64', 'x86_64')
Locale: ('en_US', 'UTF-8')
Python Version: [2.7.15+ (default, Nov 27 2018, 23:36:35) [GCC 7.3.0]]
Python Location: [/usr/bin/python2]
Site Packages: [Disabled]
Installation Root: [/usr/lib/google-cloud-sdk]
Installed Components:
kubectl: [2019.06.28]
core: [2019.06.28]
beta: [2019.06.28]
gsutil: [4.39]
bq: [2.0.44]
alpha: [2019.06.28]
System PATH: [/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin]
Python PATH: [/usr/bin/../lib/google-cloud-sdk/lib/third_party:/usr/lib/google-cloud-sdk/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload]
Cloud SDK on PATH: [False]
Kubectl on PATH: [False]
Installation Properties: [/usr/lib/google-cloud-sdk/properties]
User Config Directory: [/home/vagrant/.config/gcloud]
Active Configuration Name: [default]
Active Configuration Path: [/home/vagrant/.config/gcloud/configurations/config_default]
Account: [user1@gmail.com]
Project: [responsive-sun-123456]
Current Properties:
[core]
project: [responsive-sun-123456]
account: [use1@gmail.com]
disable_usage_reporting: [True]
Logs Directory: [/home/vagrant/.config/gcloud/logs]
Last Log File: [/home/vagrant/.config/gcloud/logs/2019.07.10/13.01.21.321193.log]
git: [git version 2.17.1]
ssh: [OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n 7 Dec 2017]
Short verification
$ gcloud info | grep '\(Google\|Account\|Project\)' Google Cloud SDK [277.0.0] Account: [user1@gmail.com] Project: [responsive-sun-123456]
References
- quickstart-debian-ubuntu Google Docs
- Google_GKE