Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 334 Bytes

container.md

File metadata and controls

24 lines (16 loc) · 334 Bytes

gcloud

# install
yay -S google-cloud-sdk

# setup
gcloud init

# create a project
gcloud projects create example-foo-bar-1 --name="Happy project"

# create a cluster
gcloud container clusters create hello-cluster --num-nodes=1

# delete a cluster
gcloud container clusters delete hello-cluster

kubectl