Skip to content

Commit

Permalink
Fix spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Wansart committed Mar 20, 2020
1 parent c6c14b6 commit c08906d
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 43 deletions.
24 changes: 12 additions & 12 deletions content/de/docs/setup/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,24 @@ Pod Information:
-no pod information available-
Server values:
server_version=nginx: 1.13.3 - lua: 10008
server_version=nginx: 1.13.3 - lua: 10008
Request Information:
client_address=172.17.0.1
method=GET
real path=/
query=
request_version=1.1
request_scheme=http
request_uri=http://192.168.99.100:8080/
client_address=172.17.0.1
method=GET
real path=/
query=
request_version=1.1
request_scheme=http
request_uri=http://192.168.99.100:8080/
Request Headers:
accept=*/*
host=192.168.99.100:30674
user-agent=curl/7.47.0
accept=*/*
host=192.168.99.100:30674
user-agent=curl/7.47.0
Request Body:
-no body in request-
-no body in request-
```

```shell
Expand Down
40 changes: 20 additions & 20 deletions content/en/docs/setup/learning-environment/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,24 +72,24 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
```
4. The `hello-minikube` Pod is now launched but you have to wait until the Pod is up before accessing it via the exposed Service.

Check if the Pod is up and running:
```shell
kubectl get pod
```
If the output shows the `STATUS` as `ContainerCreating`, the Pod is still being created:
```
NAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 0/1 ContainerCreating 0 3s
```
If the output shows the `STATUS` as `Running`, the Pod is now up and running:
```
NAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 1/1 Running 0 13s
```
Check if the Pod is up and running:
```shell
kubectl get pod
```
If the output shows the `STATUS` as `ContainerCreating`, the Pod is still being created:
```
NAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 0/1 ContainerCreating 0 3s
```
If the output shows the `STATUS` as `Running`, the Pod is now up and running:
```
NAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 1/1 Running 0 13s
```
5. Get the URL of the exposed Service to view the Service details:
```shell
minikube service hello-minikube --url
```
```shell
minikube service hello-minikube --url
```
6. To view the details of your local cluster, copy and paste the URL you got as the output, on your browser.

The output is similar to this:
Expand Down Expand Up @@ -119,7 +119,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
Request Body:
-no body in request-
```
If you no longer want the Service and cluster to run, you can delete them.
If you no longer want the Service and cluster to run, you can delete them.
7. Delete the `hello-minikube` Service:
```shell
kubectl delete services hello-minikube
Expand All @@ -145,7 +145,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
Stopping "minikube"...
"minikube" stopped.
```
For more information, see [Stopping a Cluster](#stopping-a-cluster).
For more information, see [Stopping a Cluster](#stopping-a-cluster).
10. Delete the local Minikube cluster:
```shell
minikube delete
Expand All @@ -155,7 +155,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
Deleting "minikube" ...
The "minikube" cluster has been deleted.
```
For more information, see [Deleting a cluster](#deleting-a-cluster).
For more information, see [Deleting a cluster](#deleting-a-cluster).

## Managing your Cluster

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/tasks/tools/install-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ Make sure you have kubectl installed. You can install kubectl according to the i

If you do not already have a hypervisor installed, install one of these now:

* [KVM](https://www.linux-kvm.org/), which also uses QEMU
[KVM](https://www.linux-kvm.org/), which also uses QEMU

* [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
[VirtualBox](https://www.virtualbox.org/wiki/Downloads)

Minikube also supports a `--driver=none` option that runs the Kubernetes components on the host and not in a VM.
Using this driver requires [Docker](https://www.docker.com/products/docker-desktop) and a Linux environment but not a hypervisor.
Expand Down
4 changes: 2 additions & 2 deletions content/ru/docs/setup/learning-environment/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Minikube поддерживает следующие возможности Kube
4. Под (Pod) `hello-minikube` теперь запущен, но нужно подождать, пока он начнёт функционировать, прежде чем обращаться к нему.

Проверьте, что под работает:

```shell
kubectl get pod
```
Expand Down Expand Up @@ -170,7 +170,7 @@ Minikube поддерживает следующие возможности Kube
Stopping "minikube"...
"minikube" stopped.
```
Подробности смотрите в разделе [Остановка кластера](#остановка-кластера).
Подробности смотрите в разделе [Остановка кластера](#остановка-кластера).
10. Удалите локальный кластер Minikube:
```shell
minikube delete
Expand Down
14 changes: 7 additions & 7 deletions content/zh/docs/setup/learning-environment/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
<!--
For more information on starting your cluster on a specific Kubernetes version, VM, or container runtime, see [Starting a Cluster](#starting-a-cluster).
-->

有关使用特定 Kubernetes 版本、VM 或容器运行时启动集群的详细信息,请参阅[启动集群](#starting-a-cluster)。

2. 现在,您可以使用 kubectl 与集群进行交互。有关详细信息,请参阅[与集群交互](#interacting-with-your-cluster)。
Expand Down Expand Up @@ -151,23 +151,23 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
-->

<!--
Check if the Pod is up and running:
Check if the Pod is up and running:
-->
检查 Pod 是否启动并运行:

```shell
kubectl get pod
```
<!--
If the output shows the `STATUS` as `ContainerCreating`, the Pod is still being created:
If the output shows the `STATUS` as `ContainerCreating`, the Pod is still being created:
-->
如果输出显示 `STATUS``ContainerCreating`,则表明 Pod 仍在创建中:
```
NAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 0/1 ContainerCreating 0 3s
```
<!--
If the output shows the `STATUS` as `Running`, the Pod is now up and running:
If the output shows the `STATUS` as `Running`, the Pod is now up and running:
-->
如果输出显示 `STATUS``Running`,则 Pod 现在正在运行:
```
Expand Down Expand Up @@ -223,7 +223,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
-no body in request-
```
<!--
If you no longer want the Service and cluster to run, you can delete them.
If you no longer want the Service and cluster to run, you can delete them.
-->
如果您不再希望运行 Service 和集群,则可以删除它们。

Expand Down Expand Up @@ -282,7 +282,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
"minikube" stopped.
```
<!--
For more information, see [Stopping a Cluster](#stopping-a-cluster).
For more information, see [Stopping a Cluster](#stopping-a-cluster).
-->
有关更多信息,请参阅[停止集群](#stopsing-a-cluster)。

Expand All @@ -305,7 +305,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
The "minikube" cluster has been deleted.
```
<!--
For more information, see [Deleting a cluster](#deleting-a-cluster).
For more information, see [Deleting a cluster](#deleting-a-cluster).
-->
有关更多信息,请参阅[删除集群](#deletion-a-cluster)。

Expand Down

0 comments on commit c08906d

Please sign in to comment.