From f40b3c25d63ce3702291315a684147f126e8cc35 Mon Sep 17 00:00:00 2001 From: Adeniyi Stephen Oluwatola <41240528+adeniyistephen@users.noreply.github.com> Date: Tue, 17 May 2022 13:17:47 +0100 Subject: [PATCH 1/2] Fix: Update service.md (nginx image not found) I fixed an imagepulling error in the service.md example on the website. nginx:11.14.2 is no longer on Nginx docker hub: https://hub.docker.com/_/nginx?tab=tags&page=1&name=11.14.2 so I changed the image tag to the latest. please let me know if the latest tag is not the right image to use or if I'm wrong. --- content/en/docs/concepts/services-networking/service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/services-networking/service.md b/content/en/docs/concepts/services-networking/service.md index dc59d4f84e..2eb13beb68 100644 --- a/content/en/docs/concepts/services-networking/service.md +++ b/content/en/docs/concepts/services-networking/service.md @@ -122,7 +122,7 @@ metadata: spec: containers: - name: nginx - image: nginx:11.14.2 + image: nginx:latest ports: - containerPort: 80 name: http-web-svc From f24d0c34980194a7b676d79a496439f4c1d38905 Mon Sep 17 00:00:00 2001 From: Adeniyi Stephen Oluwatola <41240528+adeniyistephen@users.noreply.github.com> Date: Tue, 31 May 2022 11:36:46 +0100 Subject: [PATCH 2/2] Changed latest tag to stable tag. --- content/en/docs/concepts/services-networking/service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/services-networking/service.md b/content/en/docs/concepts/services-networking/service.md index 2eb13beb68..c1c68e40ea 100644 --- a/content/en/docs/concepts/services-networking/service.md +++ b/content/en/docs/concepts/services-networking/service.md @@ -122,7 +122,7 @@ metadata: spec: containers: - name: nginx - image: nginx:latest + image: nginx:stable ports: - containerPort: 80 name: http-web-svc