From ee8a9b29c234bdbdac730d59a916820eb445886f Mon Sep 17 00:00:00 2001 From: Julien Date: Fri, 28 Aug 2020 17:09:38 +0200 Subject: [PATCH] Update basic-stateful-set.md Cascading Delete: fixup mixup in delete commands --- .../docs/tutorials/stateful-application/basic-stateful-set.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tutorials/stateful-application/basic-stateful-set.md b/content/en/docs/tutorials/stateful-application/basic-stateful-set.md index 9c6edf784f..64073549ef 100644 --- a/content/en/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/content/en/docs/tutorials/stateful-application/basic-stateful-set.md @@ -1039,7 +1039,7 @@ Even though you completely deleted the StatefulSet, and all of its Pods, the Pods are recreated with their PersistentVolumes mounted, and `web-0` and `web-1` continue to serve their hostnames. -Finally, delete the `web` StatefulSet... +Finally, delete the `nginx` Service... ```shell kubectl delete service nginx @@ -1047,7 +1047,7 @@ kubectl delete service nginx ``` service "nginx" deleted ``` -...and the `nginx` Service: +...and the `web` StatefulSet: ```shell kubectl delete statefulset web ```