Skip to content

Commit e6f52b6

Browse files
authored
Merge pull request #47241 from pneedle-rh/removing-space-in-shutdown-command
Removing space in shutdown command
2 parents b00a2c3 + 41bceba commit e6f52b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/graceful-shutdown.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $ oc -n openshift-kube-apiserver-operator get secret kube-apiserver-to-kubelet-s
4242
+
4343
[source,terminal]
4444
----
45-
$ for node in $(oc get nodes -o jsonpath='{.items[*].metadata.name}'); do oc debug node/${node} -- chroot /host shutdown -h 1 ; done <1>
45+
$ for node in $(oc get nodes -o jsonpath='{.items[*].metadata.name}'); do oc debug node/${node} -- chroot /host shutdown -h 1; done <1>
4646
----
4747
<1> `-h 1` indicates how long, in minutes, this process lasts before the control-plane nodes are shut down. For large-scale clusters with 10 nodes or more, set to 10 minutes or longer to make sure all the compute nodes have time to shut down first.
4848
+

0 commit comments

Comments
 (0)