@@ -238,7 +238,7 @@ The minikube tool includes a set of built-in {{< glossary_tooltip text="addons"
238
238
storage-provisioner-gluster: disabled
239
239
```
240
240
241
- 2 . Enable an addon, for example, `metrics-server`:
241
+ 1 . Enable an addon, for example, `metrics-server`:
242
242
243
243
```shell
244
244
minikube addons enable metrics-server
@@ -250,7 +250,7 @@ The minikube tool includes a set of built-in {{< glossary_tooltip text="addons"
250
250
The ' metrics-server' addon is enabled
251
251
```
252
252
253
- 3 . View the Pod and Service you created by installing that addon:
253
+ 1 . View the Pod and Service you created by installing that addon:
254
254
255
255
```shell
256
256
kubectl get pod,svc -n kube-system
@@ -279,7 +279,26 @@ The minikube tool includes a set of built-in {{< glossary_tooltip text="addons"
279
279
service/monitoring-influxdb ClusterIP 10.111.169.94 <none> 8083/TCP,8086/TCP 26s
280
280
```
281
281
282
- 4. Disable `metrics-server`:
282
+ 1. Check the output from `metrics-server`:
283
+
284
+ ```shell
285
+ kubectl top pods
286
+ ```
287
+
288
+ The output is similar to:
289
+
290
+ ```
291
+ NAME CPU(cores) MEMORY(bytes)
292
+ hello-node-ccf4b9788-4jn97 1m 6Mi
293
+ ```
294
+
295
+ If you see the following message, wait, and try again:
296
+
297
+ ```
298
+ error: Metrics API not available
299
+ ```
300
+
301
+ 1. Disable `metrics-server`:
283
302
284
303
```shell
285
304
minikube addons disable metrics-server
0 commit comments