We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c86ceb8 + f438d28 commit 3c1e828Copy full SHA for 3c1e828
content/en/docs/tasks/access-application-cluster/ingress-minikube.md
@@ -66,7 +66,7 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
66
1. Create a Deployment using the following command:
67
68
```shell
69
- kubectl run web --image=gcr.io/google-samples/hello-app:1.0 --port=8080
+ kubectl create deployment web --image=gcr.io/google-samples/hello-app:1.0 --port=8080
70
```
71
72
Output:
@@ -78,7 +78,7 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
78
1. Expose the Deployment:
79
80
81
- kubectl expose deployment web --target-port=8080 --type=NodePort
+ kubectl expose deployment web --type=NodePort --port=8080
82
83
84
0 commit comments