The Deployment created automatically a label for our Pod. With the describe deployment subcommand you can see the name (the key) of that label:
kubectl describe deployment
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 764c785d7a..0491773599 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 @@ -153,7 +153,7 @@ description: |-
- Once you're ready, move on to Viewing Pods and Nodes.
+ Once you're ready, move on to Viewing Pods and Nodes.- Once you're ready, move on to Using A Service To Expose Your App.
+ Once you're ready, move on to Using A Service To Expose Your App.The Deployment created automatically a label for our Pod. With the describe deployment subcommand you can see the name (the key) of that label:
kubectl describe deployment
- Once you're ready, move on to Running Multiple Instances of Your App.
+ Once you're ready, move on to Running Multiple Instances of Your App.- Once you're ready, move on to Performing a Rolling Update.
+ Once you're ready, move on to Performing a Rolling Update.First, check that the app is running. To find the exposed IP address and port, run the describe service command:
kubectl describe services/kubernetes-bootcamp
Create an environment variable called NODE_PORT that has the value of the Node port assigned:
@@ -183,7 +183,7 @@ description: |-Remember to clean up your local cluster
-kubectl delete deployments/kubernetes-bootcamp services/kubernetes-bootcamp
kubectl delete deployments/kubernetes-bootcamp services/kubernetes-bootcamp