Fix numbered lists (#10887)
* Fix numbered lists * Update hello-minikube.md * Update hello-minikube.md * Update hello-minikube.md * Update hello-minikube.md * Update hello-minikube.md * Update hello-minikube.md * Update hello-minikube.md * remove redundant note labels
This commit is contained in:
parent
c34ef23f3c
commit
e74e9394cd
|
|
@ -50,13 +50,7 @@ For more information, read the Docker documentation for [docker build](https://d
|
||||||
|
|
||||||
{{< kat-button >}}
|
{{< kat-button >}}
|
||||||
|
|
||||||
{{< note >}}
|
{{< note >}}If you installed Minikube locally, run `minikube start`.{{< /note >}}
|
||||||
If you installed Minikube locally, run
|
|
||||||
|
|
||||||
```shell
|
|
||||||
minikube start
|
|
||||||
```
|
|
||||||
{{< /note >}}
|
|
||||||
|
|
||||||
2. Open the Kubernetes dashboard in a browser:
|
2. Open the Kubernetes dashboard in a browser:
|
||||||
|
|
||||||
|
|
@ -121,10 +115,7 @@ Pod runs a Container based on the provided Docker image.
|
||||||
kubectl config view
|
kubectl config view
|
||||||
```
|
```
|
||||||
|
|
||||||
{{< note >}}
|
{{< note >}}For more information about `kubectl`commands, see the [kubectl overview](/docs/user-guide/kubectl-overview/).{{< /note >}}
|
||||||
For more information about `kubectl`commands, see the
|
|
||||||
[kubectl overview](/docs/user-guide/kubectl-overview/).
|
|
||||||
{{< /note >}}
|
|
||||||
|
|
||||||
## Create a Service
|
## Create a Service
|
||||||
|
|
||||||
|
|
@ -165,7 +156,7 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).
|
||||||
minikube service hello-node
|
minikube service hello-node
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Katacoda environment only: Click the plus sign, then click **Select port to view on Host 1**.
|
4. Katacoda environment only: Click the plus sign, and then click **Select port to view on Host 1**.
|
||||||
|
|
||||||
5. Katacoda environment only: Type in the Port number following `8080:`, and then click **Display Port**.
|
5. Katacoda environment only: Type in the Port number following `8080:`, and then click **Display Port**.
|
||||||
|
|
||||||
|
|
@ -184,25 +175,22 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
|
||||||
Output:
|
Output:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
- addon-manager: enabled
|
addon-manager: enabled
|
||||||
- coredns: disabled
|
coredns: disabled
|
||||||
- dashboard: enabled
|
dashboard: enabled
|
||||||
- default-storageclass: enabled
|
default-storageclass: enabled
|
||||||
- efk: disabled
|
efk: disabled
|
||||||
- freshpod: disabled
|
freshpod: disabled
|
||||||
- heapster: disabled
|
heapster: disabled
|
||||||
- ingress: disabled
|
ingress: disabled
|
||||||
- kube-dns: enabled
|
kube-dns: enabled
|
||||||
- metrics-server: disabled
|
metrics-server: disabled
|
||||||
- nvidia-driver-installer: disabled
|
nvidia-driver-installer: disabled
|
||||||
- nvidia-gpu-device-plugin: disabled
|
nvidia-gpu-device-plugin: disabled
|
||||||
- registry: disabled
|
registry: disabled
|
||||||
- registry-creds: disabled
|
registry-creds: disabled
|
||||||
- storage-provisioner: enabled
|
storage-provisioner: enabled
|
||||||
```
|
```
|
||||||
{{< note >}}
|
|
||||||
Minikube must be running for these commands to take effect.
|
|
||||||
{{< /note >}}
|
|
||||||
|
|
||||||
2. Enable an addon, for example, `heapster`:
|
2. Enable an addon, for example, `heapster`:
|
||||||
|
|
||||||
|
|
@ -219,7 +207,7 @@ Minikube has a set of built-in addons that can be enabled, disabled and opened i
|
||||||
3. View the Pod and Service you just created:
|
3. View the Pod and Service you just created:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
kubectl get po,svc -n kube-system
|
kubectl get pod,svc -n kube-system
|
||||||
```
|
```
|
||||||
|
|
||||||
Output:
|
Output:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue