Avoid deletion of entire namespace by accident

Yep, that happened to me. I did

```
kubectl delete -f deployment/human-connection
```

 and I forgot about the namespace in that folder. Now everything is gone.
This commit is contained in:
Robert Schäfer 2019-05-29 14:21:47 +02:00
parent df519c9828
commit 5622b1aa30
2 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ your deployed kubernetes pods.
## Create a namespace
```bash
# in folder deployment/human-connection/
# in folder deployment/
$ kubectl apply -f namespace.yaml
```