From 9b9910c0d49392a4c16e9f057774bffc6d964684 Mon Sep 17 00:00:00 2001 From: Kartik494 <52158641+Kartik494@users.noreply.github.com> Date: Thu, 16 Jan 2020 23:18:22 +0530 Subject: [PATCH] Update k8s.io/docs/tutorials/hello-minikube (#18673) * Update k8s.io/docs/tutorials/hello-minikube * Update hello-minikube.md --- content/en/docs/tutorials/hello-minikube.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/content/en/docs/tutorials/hello-minikube.md b/content/en/docs/tutorials/hello-minikube.md index 2445e40f89..92a465ea4f 100644 --- a/content/en/docs/tutorials/hello-minikube.md +++ b/content/en/docs/tutorials/hello-minikube.md @@ -187,7 +187,6 @@ Minikube has a set of built-in {{< glossary_tooltip text="addons" term_id="addon efk: disabled freshpod: disabled gvisor: disabled - heapster: disabled helm-tiller: disabled ingress: disabled ingress-dns: disabled @@ -201,16 +200,16 @@ Minikube has a set of built-in {{< glossary_tooltip text="addons" term_id="addon storage-provisioner-gluster: disabled ``` -2. Enable an addon, for example, `heapster`: +2. Enable an addon, for example, `metrics-server`: ```shell - minikube addons enable heapster + minikube addons enable metrics-server ``` The output is similar to: ``` - heapster was successfully enabled + metrics-server was successfully enabled ``` 3. View the Pod and Service you just created: @@ -225,7 +224,7 @@ Minikube has a set of built-in {{< glossary_tooltip text="addons" term_id="addon NAME READY STATUS RESTARTS AGE pod/coredns-5644d7b6d9-mh9ll 1/1 Running 0 34m pod/coredns-5644d7b6d9-pqd2t 1/1 Running 0 34m - pod/heapster-9jttx 1/1 Running 0 26s + pod/metrics-server-67fb648c5 1/1 Running 0 26s pod/etcd-minikube 1/1 Running 0 34m pod/influxdb-grafana-b29w8 2/2 Running 0 26s pod/kube-addon-manager-minikube 1/1 Running 0 34m @@ -236,22 +235,22 @@ Minikube has a set of built-in {{< glossary_tooltip text="addons" term_id="addon pod/storage-provisioner 1/1 Running 0 34m NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE - service/heapster ClusterIP 10.96.241.45 80/TCP 26s + service/metrics-server ClusterIP 10.96.241.45 80/TCP 26s service/kube-dns ClusterIP 10.96.0.10 53/UDP,53/TCP 34m service/monitoring-grafana NodePort 10.99.24.54 80:30002/TCP 26s service/monitoring-influxdb ClusterIP 10.111.169.94 8083/TCP,8086/TCP 26s ``` -4. Disable `heapster`: +4. Disable `metrics-server`: ```shell - minikube addons disable heapster + minikube addons disable metrics-server ``` The output is similar to: ``` - heapster was successfully disabled + metrics-server was successfully disabled ``` ## Clean up