You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/reference/tools.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ Kubernetes contains several built-in tools to help you work with the Kubernetes
14
14
15
15
[`kubectl`](/docs/tasks/tools/install-kubectl/) is the command line tool for Kubernetes. It controls the Kubernetes cluster manager.
16
16
17
-
## Kubeadm
17
+
## Kubeadm
18
18
19
-
[`kubeadm`](/docs/setup/independent/install-kubeadm/) is the command line tool for easily provisioning a secure Kubernetes cluster on top of physical or cloud servers or virtual machines (currently in alpha).
19
+
[`kubeadm`](/docs/setup/production-environment/tools/kubeadm/install-kubeadm/) is the command line tool for easily provisioning a secure Kubernetes cluster on top of physical or cloud servers or virtual machines (currently in alpha).
20
20
21
21
## Kubefed
22
22
@@ -29,10 +29,10 @@ to help you administrate your federated clusters.
29
29
easy to run a single-node Kubernetes cluster locally on your workstation for
30
30
development and testing purposes.
31
31
32
-
## Dasard
32
+
## Dasard
33
33
34
34
[`Dasard`](/docs/tasks/access-application-cluster/web-ui-dasard/), the web-based user interface of Kubernetes, allows you to deploy containerized applications
35
-
to a Kubernetes cluster, troubleshoot them, and manage the cluster and its resources itself.
35
+
to a Kubernetes cluster, troubleshoot them, and manage the cluster and its resources itself.
Copy file name to clipboardExpand all lines: content/en/docs/setup/best-practices/certificates.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
1
---
2
-
title: PKI Certificates and Requirements
2
+
title: PKI certificates and requirements
3
3
reviewers:
4
-
- sig-cluster-lifecycle
4
+
- sig-cluster-lifecycle
5
5
content_template: templates/concept
6
+
weight: 40
6
7
---
7
8
8
9
{{% capture overview %}}
@@ -45,7 +46,7 @@ If you don't want kubeadm to generate the required certificates, you can create
45
46
46
47
### Single root CA
47
48
48
-
You can create a single root CA, controlled by an administrator. This root CA can then create multiple intermediate CAs, and delegate all further creation to Kubernetes itself.
49
+
You can create a single root CA, controlled by an administrator. This root CA can then create multiple intermediate CAs, and delegate all further creation to Kubernetes itself.
49
50
50
51
Required CAs:
51
52
@@ -57,7 +58,7 @@ Required CAs:
57
58
58
59
### All certificates
59
60
60
-
If you don't wish to copy these private keys to your API servers, you can generate all certificates yourself.
61
+
If you don't wish to copy these private keys to your API servers, you can generate all certificates yourself.
61
62
62
63
Required certificates:
63
64
@@ -104,7 +105,7 @@ Certificates should be placed in a recommended path (as used by [kubeadm][kubead
104
105
105
106
## Configure certificates for user accounts
106
107
107
-
You must manually configure these administrator account and service accounts:
108
+
You must manually configure these administrator account and service accounts:
108
109
109
110
| filename | credential name | Default CN | O (in Subject) |
Copy file name to clipboardExpand all lines: content/en/docs/setup/learning-environment/minikube.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ reviewers:
3
3
- dlorenc
4
4
- balopat
5
5
- aaron-prindle
6
-
title: Running Kubernetes Locally via Minikube
6
+
title: Installing Kubernetes with Minikube
7
7
content_template: templates/concept
8
8
---
9
9
@@ -50,7 +50,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
50
50
For more information on starting your cluster on a specific Kubernetes version, VM, or container runtime, see [Starting a Cluster](#starting-a-cluster).
51
51
52
52
2. Now, you can interact with your cluster using kubectl. For more information, see [Interacting with Your Cluster](#interacting-with-your-cluster).
53
-
53
+
54
54
Let’s create a Kubernetes Deployment using an existing image named `echoserver`, which is a simple HTTP server and expose it on port 8080 using `--port`.
55
55
```shell
56
56
kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080
@@ -64,7 +64,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
0 commit comments