From 92139111e4d496b4a0143b6b656adb0c64e50622 Mon Sep 17 00:00:00 2001 From: Sharjeel Aziz Date: Sat, 30 Nov 2019 06:43:03 -0500 Subject: [PATCH] Update commands/command output to reflect current versions. (#17877) * Minor heading update according to the guideline Fixed title of the document to use title case as described in the community guidelines. * Capitalization fixes. * Update commands/command output to reflect the current version --- .../dns-horizontal-autoscaling.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/en/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md b/content/en/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md index 88d5f2bda384b..3a7651f08cdb3 100644 --- a/content/en/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md +++ b/content/en/docs/tasks/administer-cluster/dns-horizontal-autoscaling.md @@ -31,9 +31,9 @@ kubectl get deployment --namespace=kube-system The output is similar to this: - NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE + NAME READY UP-TO-DATE AVAILABLE AGE ... - dns-autoscaler 1 1 1 1 ... + dns-autoscaler 1/1 1 1 ... ... If you see "dns-autoscaler" in the output, DNS horizontal autoscaling is @@ -50,9 +50,9 @@ kubectl get deployment -l k8s-app=kube-dns --namespace=kube-system The output is similar to this: - NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE + NAME READY UP-TO-DATE AVAILABLE AGE ... - coredns 2 2 2 2 ... + coredns 2/2 2 2 ... ... If you don't see a Deployment for DNS services, you can also look for it by name: @@ -164,14 +164,14 @@ The output is: Verify that the replica count is zero: ```shell -kubectl get deployment --namespace=kube-system +kubectl get rs --namespace=kube-system ``` The output displays 0 in the DESIRED and CURRENT columns: - NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE + NAME DESIRED CURRENT READY AGE ... - dns-autoscaler 0 0 0 0 ... + dns-autoscaler-6b59789fc8 0 0 0 ... ... ### Option 2: Delete the dns-autoscaler deployment @@ -185,7 +185,7 @@ kubectl delete deployment dns-autoscaler --namespace=kube-system The output is: - deployment.extensions "dns-autoscaler" deleted + deployment.apps "dns-autoscaler" deleted ### Option 3: Delete the dns-autoscaler manifest file from the master node