Assigned numbers to steps that were previously unlabeled.

Update content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html

Co-authored-by: Michael <haifeng.yao@daocloud.io>
pull/43692/head
PranitRout07 2023-10-26 05:54:52 +05:30
parent c5a035cc29
commit ea1e980806
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ description: |-
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<h3>Create a new Service</h3> <h3>Step 1: Creating a new Service</h3>
<p>Lets verify that our application is running. Well use the <code>kubectl get</code> command and look for existing Pods:</p> <p>Lets verify that our application is running. Well use the <code>kubectl get</code> command and look for existing Pods:</p>
<p><code><b>kubectl get pods</b></code></p> <p><code><b>kubectl get pods</b></code></p>
<p>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 <a href="/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro#deploy-an-app">Using kubectl to create a Deployment</a> tutorial. <p>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 <a href="/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro#deploy-an-app">Using kubectl to create a Deployment</a> tutorial.
@ -151,7 +151,7 @@ description: |-
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<h3>Deleting a service</h3> <h3>Step 3: Deleting a service</h3>
<p>To delete Services you can use the <code>delete service</code> subcommand. Labels can be used also here:</p> <p>To delete Services you can use the <code>delete service</code> subcommand. Labels can be used also here:</p>
<p><code><b>kubectl delete service -l app=kubernetes-bootcamp</b></code></p> <p><code><b>kubectl delete service -l app=kubernetes-bootcamp</b></code></p>
<p>Confirm that the Service is gone:</p> <p>Confirm that the Service is gone:</p>