Skip to content

Commit 4bf1339

Browse files
authored
Update manage-deployment.md
If you created the resource (on your local minikube) as instructed using: kubectl create -f https://k8s.io/docs/concepts/cluster-administration/nginx-app.yaml then, you probably want to delete it from your minikube, in that case, the correct command is the one proposed in this PR.
1 parent eb22016 commit 4bf1339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concepts/cluster-administration/manage-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ deployment "nginx-deployment" created
5555
Resource creation isn't the only operation that `kubectl` can perform in bulk. It can also extract resource names from configuration files in order to perform other operations, in particular to delete the same resources you created:
5656

5757
```shell
58-
$ kubectl delete -f https://k8s.io/docs/concepts/cluster-administration/nginx/
58+
$ kubectl delete -f https://k8s.io/docs/concepts/cluster-administration/nginx-app.yaml
5959
deployment "my-nginx" deleted
6060
service "my-nginx-svc" deleted
6161
```

0 commit comments

Comments
 (0)