การใช้งาน kubernetes k8s บน GKE google kubernetest engine กับ docker images
https://cloud.google.com/kubernetes-engine/docs/tutorials/hello-appYou can create an image for the v2 version of your application by building the same source code and tagging it as v2 (or you can change the "Hello, World!" string to "Hello, Kubernetes Engine!" before building the image):
docker build -t gcr.io/${PROJECT_ID}/hello-app:v2 .
Then push the image to the Google Container Registry:
gcloud docker -- push gcr.io/${PROJECT_ID}/hello-app:v2
Now, apply a rolling update to the existing deployment with an image update:
kubectl set image deployment/hello-web hello-web=gcr.io/${PROJECT_ID}/hello-app:v2
Visit your application again at http://[EXTERNAL_IP], and observe the changes you made take effect.