From 9c0d101871501bcd9c602dd75e6417a71182a8cb Mon Sep 17 00:00:00 2001 From: Mauren Berti Date: Tue, 27 Jun 2023 11:24:34 -0400 Subject: [PATCH] Fix link and add anchor to navigate to specific section. Fix the target link in the expose-intro tutorial and add an anchor to deploy-intro so the link points to the specific page location. --- .../tutorials/kubernetes-basics/deploy-app/deploy-intro.html | 1 + .../docs/tutorials/kubernetes-basics/expose/expose-intro.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html b/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html index f2e0b47180..dfc4bf31e2 100644 --- a/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html +++ b/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html @@ -112,6 +112,7 @@ description: |-
+

Deploy an app

Let’s deploy our first app on Kubernetes with the kubectl create deployment command. We need to provide the deployment name and app image location (include the full repository url for images hosted outside Docker hub).

kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1

diff --git a/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html b/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html index 13ab681bf3..34e97181ac 100644 --- a/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html +++ b/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html @@ -97,7 +97,7 @@ description: |-

Create a new Service

Let’s verify that our application is running. We’ll use the kubectl get command and look for existing Pods:

kubectl get pods

-

If no Pods are running then it means the objects from the previous tutorials were cleaned up. In this case, go back and recreate the deployment from the Using kubectl to create a Deployment tutorial. +

If no Pods are running then it means the objects from the previous tutorials were cleaned up. In this case, go back and recreate the deployment from the Using kubectl to create a Deployment tutorial. Please wait a couple of seconds and list the Pods again. You can continue once you see the one Pod running.

Next, let’s list the current Services from our cluster:

kubectl get services