@@ -36,10 +36,10 @@ The output is similar to this:
36
36
37
37
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
38
38
...
39
- kube- dns-autoscaler 1 1 1 1 ...
39
+ dns-autoscaler 1 1 1 1 ...
40
40
...
41
41
42
- If you see "kube- dns-autoscaler" in the output, DNS horizontal autoscaling is
42
+ If you see "dns-autoscaler" in the output, DNS horizontal autoscaling is
43
43
already enabled, and you can skip to
44
44
[ Tuning autoscaling parameters] ( #tuning-autoscaling-parameters ) .
45
45
@@ -53,10 +53,13 @@ The output is similar to this:
53
53
54
54
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
55
55
...
56
- kube-dns 1 1 1 1 ...
56
+ coredns 2 2 2 2 ...
57
57
...
58
58
59
- In Kubernetes versions earlier than 1.5 DNS is implemented using a
59
+
60
+ In Kubernetes versions earlier than 1.12, the DNS Deployment was called "kube-dns".
61
+
62
+ In Kubernetes versions earlier than 1.5 DNS was implemented using a
60
63
ReplicationController instead of a Deployment. So if you don't see kube-dns,
61
64
or a similar name, in the preceding output, list the ReplicationControllers in
62
65
your cluster in the kube-system namespace:
@@ -77,7 +80,7 @@ If you have a DNS Deployment, your scale target is:
77
80
Deployment/<your-deployment-name>
78
81
79
82
where <dns-deployment-name > is the name of your DNS Deployment. For example, if
80
- your DNS Deployment name is kube-dns , your scale target is Deployment/kube-dns .
83
+ your DNS Deployment name is coredns , your scale target is Deployment/coredns .
81
84
82
85
If you have a DNS ReplicationController, your scale target is:
83
86
@@ -111,20 +114,20 @@ DNS horizontal autoscaling is now enabled.
111
114
112
115
## Tuning autoscaling parameters
113
116
114
- Verify that the kube- dns-autoscaler ConfigMap exists:
117
+ Verify that the dns-autoscaler ConfigMap exists:
115
118
116
119
kubectl get configmap --namespace=kube-system
117
120
118
121
The output is similar to this:
119
122
120
123
NAME DATA AGE
121
124
...
122
- kube- dns-autoscaler 1 ...
125
+ dns-autoscaler 1 ...
123
126
...
124
127
125
128
Modify the data in the ConfigMap:
126
129
127
- kubectl edit configmap kube- dns-autoscaler --namespace=kube-system
130
+ kubectl edit configmap dns-autoscaler --namespace=kube-system
128
131
129
132
Look for this line:
130
133
@@ -151,15 +154,15 @@ There are other supported scaling patterns. For details, see
151
154
There are a few options for turning DNS horizontal autoscaling. Which option to
152
155
use depends on different conditions.
153
156
154
- ### Option 1: Scale down the kube- dns-autoscaler deployment to 0 replicas
157
+ ### Option 1: Scale down the dns-autoscaler deployment to 0 replicas
155
158
156
159
This option works for all situations. Enter this command:
157
160
158
- kubectl scale deployment --replicas=0 kube- dns-autoscaler --namespace=kube-system
161
+ kubectl scale deployment --replicas=0 dns-autoscaler --namespace=kube-system
159
162
160
163
The output is:
161
164
162
- deployment.extensions/kube- dns-autoscaler scaled
165
+ deployment.extensions/dns-autoscaler scaled
163
166
164
167
Verify that the replica count is zero:
165
168
@@ -169,33 +172,33 @@ The output displays 0 in the DESIRED and CURRENT columns:
169
172
170
173
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
171
174
...
172
- kube- dns-autoscaler 0 0 0 0 ...
175
+ dns-autoscaler 0 0 0 0 ...
173
176
...
174
177
175
- ### Option 2: Delete the kube- dns-autoscaler deployment
178
+ ### Option 2: Delete the dns-autoscaler deployment
176
179
177
- This option works if kube- dns-autoscaler is under your own control, which means
180
+ This option works if dns-autoscaler is under your own control, which means
178
181
no one will re-create it:
179
182
180
- kubectl delete deployment kube- dns-autoscaler --namespace=kube-system
183
+ kubectl delete deployment dns-autoscaler --namespace=kube-system
181
184
182
185
The output is:
183
186
184
- deployment.extensions "kube- dns-autoscaler" deleted
187
+ deployment.extensions "dns-autoscaler" deleted
185
188
186
- ### Option 3: Delete the kube- dns-autoscaler manifest file from the master node
189
+ ### Option 3: Delete the dns-autoscaler manifest file from the master node
187
190
188
- This option works if kube- dns-autoscaler is under control of the
191
+ This option works if dns-autoscaler is under control of the
189
192
[ Addon Manager] ( https://git.k8s.io/kubernetes/cluster/addons/README.md ) 's
190
193
control, and you have write access to the master node.
191
194
192
195
Sign in to the master node and delete the corresponding manifest file.
193
- The common path for this kube- dns-autoscaler is:
196
+ The common path for this dns-autoscaler is:
194
197
195
198
/etc/kubernetes/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml
196
199
197
200
After the manifest file is deleted, the Addon Manager will delete the
198
- kube- dns-autoscaler Deployment.
201
+ dns-autoscaler Deployment.
199
202
200
203
{{% /capture %}}
201
204
0 commit comments