Accessing the Google Cloud Platform
Now that we understand some of the hardware and software choices that are available to us in the Google Cloud Platform buffet, we also should know how we can go about consuming these resources. We have multiple following choices:
- One really handy way is using the GCP console, also known as the web console; simply access this from a web browser at https://console.cloud.google.com/
- Another is by making use of a command-line interface using command-line tools. There are four command-line utilities that you might encounter while working with the GCP:
gcloud
: This is for pretty much everything other than the specific cases mentioned latergsutil
: This is for working with cloud storage bucketsbq
: This is for working with BigQuerykubetcl
: This is for working with Kubernetes (note thatkubectl
is not tied to GCP. If you use Kubernetes on a competing cloud provider such as Azure, you'd usekubectl
there as well)
- Another way is to programmatically access GCP resources...