Skip to content

Commit

Permalink
de: Replace deprecated kubectl run (#16971)
Browse files Browse the repository at this point in the history
Signed-off-by: ialidzhikov <[email protected]>
  • Loading branch information
ialidzhikov authored and k8s-ci-robot committed Oct 18, 2019
1 parent 2f44e57 commit 87e4846
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/de/docs/setup/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ Creating machine...
Starting local Kubernetes cluster...
```
```shell
kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080
kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.10
```
```
deployment.apps/hello-minikube created
```

```shell
kubectl expose deployment hello-minikube --type=NodePort
kubectl expose deployment hello-minikube --type=NodePort --port=8080
```
```
service/hello-minikube exposed
Expand Down

0 comments on commit 87e4846

Please sign in to comment.