Kubernetes Engine
Run containers and implement cloud-native applications powered by industry standards
To create a cluster
gcloud container clusters create [CLUSTER-NAME]gcloud container clusters get-credentials [CLUSTER-NAME]To create a Kubernetes Service, which is a Kubernetes resource that lets you expose your application to external traffic
kubectl expose deployment hello-server \
--type=LoadBalancer \
--port 8080To delete the cluster
Commands
Last updated