Google Cloud Basics:
What is Cloud Computing:
On-demand self service
Broad network access
resource pooling
rapid elasticity
measured service
How we got there ?
1. Physical/Colo: User-configured, managed andmaintained
2.Virtualized: user-configured
3. Serverless: fully automated
GCP computing architectures:
Computer Engine: IaaS
Kubernetes Engine: Hybrid
App Engine: PaaS
Cloud Functions: Serverless logic
Managed services: automated elastic resources
There are seven categories of Google Cloud services:
- Compute: A variety of machine types that support any type of workload. The different computing options let you decide how much control you want over operational details and infrastructure.
- Storage: Data storage and database options for structured or unstructured, relational or nonrelational data.
- Networking: Services that balance application traffic and provision security rules.
- Cloud Operations: A suite of cross-cloud logging, monitoring, trace, and other service reliability tools.
- Tools: Services that help developers manage deployments and application build pipelines.
- Big Data: Services that allow you to process and analyze large datasets.
- Artificial Intelligence: A suite of APIs that run specific artificial intelligence and machine learning tasks on Google Cloud.
This link takes you to documentation that covers each of these categories in more detail.
gcloud command line tool guide: https://cloud.google.com/sdk/gcloud/\\\
Task: Create a new instance with gcloud
In the Cloud Shell, use gcloud
to create a new virtual machine instance from the command line:
gcloud compute instances create gcelab2 --machine-type n1-standard-2 --zone us-central1-f
You can also use SSH to connect to your instance via gcloud
. Make sure to add your zone, or omit the --zone
flag if you've set the option globally:
gcloud compute ssh gcelab2 --zone us-central1-f
Got into a authentication error on first attempt of creating instance using gcloud. The error is displayed above and solved as well. For more information about solution refere this:
https://stackoverflow.com/questions/49584800/error-gcloud-compute-ssh-could-not-fetch-resource-insufficient-permission
No comments:
Post a Comment