Skip to content

Commit e4101d7

Browse files
Tim Bannisterk8s-ci-robot
authored andcommitted
Fix sample command output for “Hello Minikube” (#18077)
1 parent a494490 commit e4101d7

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

content/en/docs/tutorials/hello-minikube.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ Pod runs a Container based on the provided Docker image.
8787
kubectl get deployments
8888
```
8989
90-
Output:
90+
The output is similar to:
9191
92-
```shell
92+
```
9393
NAME READY UP-TO-DATE AVAILABLE AGE
9494
hello-node 1/1 1 1 1m
9595
```
@@ -99,9 +99,10 @@ Pod runs a Container based on the provided Docker image.
9999
```shell
100100
kubectl get pods
101101
```
102-
Output:
103102
104-
```shell
103+
The output is similar to:
104+
105+
```
105106
NAME READY STATUS RESTARTS AGE
106107
hello-node-5f76cf6ccf-br9b5 1/1 Running 0 1m
107108
```
@@ -142,9 +143,9 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).
142143
kubectl get services
143144
```
144145
145-
Output:
146+
The output is similar to:
146147
147-
```shell
148+
```
148149
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
149150
hello-node LoadBalancer 10.108.144.78 <pending> 8080:30369/TCP 21s
150151
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 23m
@@ -177,9 +178,9 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
177178
minikube addons list
178179
```
179180
180-
Output:
181+
The output is similar to:
181182
182-
```shell
183+
```
183184
addon-manager: enabled
184185
coredns: disabled
185186
dashboard: enabled
@@ -203,9 +204,9 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
203204
minikube addons enable heapster
204205
```
205206
206-
Output:
207+
The output is similar to:
207208
208-
```shell
209+
```
209210
heapster was successfully enabled
210211
```
211212
@@ -215,9 +216,9 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
215216
kubectl get pod,svc -n kube-system
216217
```
217218
218-
Output:
219+
The output is similar to:
219220
220-
```shell
221+
```
221222
NAME READY STATUS RESTARTS AGE
222223
pod/heapster-9jttx 1/1 Running 0 26s
223224
pod/influxdb-grafana-b29w8 2/2 Running 0 26s
@@ -240,9 +241,9 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
240241
minikube addons disable heapster
241242
```
242243
243-
Output:
244+
The output is similar to:
244245
245-
```shell
246+
```
246247
heapster was successfully disabled
247248
```
248249

0 commit comments

Comments
 (0)