Modify a UI menu in hello-minikube
This commit is contained in:
parent
ce955062cc
commit
a63a43adae
|
|
@ -41,7 +41,7 @@ This tutorial provides a container image that uses NGINX to echo back all the re
|
||||||
|
|
||||||
## Create a minikube cluster
|
## Create a minikube cluster
|
||||||
|
|
||||||
1. Click **Launch Terminal**
|
1. Click **Launch Terminal**.
|
||||||
|
|
||||||
{{< kat-button >}}
|
{{< kat-button >}}
|
||||||
|
|
||||||
|
|
@ -90,11 +90,10 @@ tutorial has only one Container. A Kubernetes
|
||||||
Pod and restarts the Pod's Container if it terminates. Deployments are the
|
Pod and restarts the Pod's Container if it terminates. Deployments are the
|
||||||
recommended way to manage the creation and scaling of Pods.
|
recommended way to manage the creation and scaling of Pods.
|
||||||
|
|
||||||
1. Katacoda environment only: At the top of the terminal pane, click the plus sign, and then click open a new terminal.
|
1. Katacoda environment only: At the top of the terminal pane, click the plus sign, and then click **Open New Terminal**.
|
||||||
|
|
||||||
1. Use the `kubectl create` command to create a Deployment that manages a Pod. The
|
1. Use the `kubectl create` command to create a Deployment that manages a Pod. The
|
||||||
Pod runs a Container based on the provided Docker image.
|
Pod runs a Container based on the provided Docker image.
|
||||||
|
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
|
kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue