@@ -87,9 +87,9 @@ Pod runs a Container based on the provided Docker image.
87
87
kubectl get deployments
88
88
```
89
89
90
- Output :
90
+ The output is similar to :
91
91
92
- ```shell
92
+ ```
93
93
NAME READY UP-TO-DATE AVAILABLE AGE
94
94
hello-node 1/1 1 1 1m
95
95
```
@@ -99,9 +99,10 @@ Pod runs a Container based on the provided Docker image.
99
99
```shell
100
100
kubectl get pods
101
101
```
102
- Output:
103
102
104
- ```shell
103
+ The output is similar to:
104
+
105
+ ```
105
106
NAME READY STATUS RESTARTS AGE
106
107
hello-node-5f76cf6ccf-br9b5 1/1 Running 0 1m
107
108
```
@@ -142,9 +143,9 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).
142
143
kubectl get services
143
144
```
144
145
145
- Output :
146
+ The output is similar to :
146
147
147
- ```shell
148
+ ```
148
149
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
149
150
hello-node LoadBalancer 10.108.144.78 <pending> 8080:30369/TCP 21s
150
151
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
177
178
minikube addons list
178
179
```
179
180
180
- Output :
181
+ The output is similar to :
181
182
182
- ```shell
183
+ ```
183
184
addon-manager: enabled
184
185
coredns: disabled
185
186
dashboard: enabled
@@ -203,9 +204,9 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
203
204
minikube addons enable heapster
204
205
```
205
206
206
- Output :
207
+ The output is similar to :
207
208
208
- ```shell
209
+ ```
209
210
heapster was successfully enabled
210
211
```
211
212
@@ -215,9 +216,9 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
215
216
kubectl get pod,svc -n kube-system
216
217
```
217
218
218
- Output :
219
+ The output is similar to :
219
220
220
- ```shell
221
+ ```
221
222
NAME READY STATUS RESTARTS AGE
222
223
pod/heapster-9jttx 1/1 Running 0 26s
223
224
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
240
241
minikube addons disable heapster
241
242
```
242
243
243
- Output :
244
+ The output is similar to :
244
245
245
- ```shell
246
+ ```
246
247
heapster was successfully disabled
247
248
```
248
249
0 commit comments