From fa033cd15fad795b183257e59db101ba90a839ac Mon Sep 17 00:00:00 2001 From: Robert Cronin Date: Tue, 28 May 2024 09:50:19 +1000 Subject: [PATCH] Update node-hello image to Google's newer image --- .../service-access-application-cluster.md | 4 +++- content/en/examples/service/access/hello-application.yaml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tasks/access-application-cluster/service-access-application-cluster.md b/content/en/docs/tasks/access-application-cluster/service-access-application-cluster.md index 9effb1e2f7..684afc145e 100644 --- a/content/en/docs/tasks/access-application-cluster/service-access-application-cluster.md +++ b/content/en/docs/tasks/access-application-cluster/service-access-application-cluster.md @@ -128,7 +128,9 @@ Here is the configuration file for the application Deployment: response to a successful request is a hello message: ```none - Hello Kubernetes! + Hello, world! + Version: 2.0.0 + Hostname: hello-world-cdd4458f4-m47c8 ``` ## Using a service configuration file diff --git a/content/en/examples/service/access/hello-application.yaml b/content/en/examples/service/access/hello-application.yaml index 1cf41313c5..24270db9c9 100644 --- a/content/en/examples/service/access/hello-application.yaml +++ b/content/en/examples/service/access/hello-application.yaml @@ -14,7 +14,7 @@ spec: spec: containers: - name: hello-world - image: gcr.io/google-samples/node-hello:1.0 + image: us-docker.pkg.dev/google-samples/containers/gke/hello-app:2.0 ports: - containerPort: 8080 protocol: TCP