Skip to content

Commit 24877f6

Browse files
authored
Merge branch 'master' into france_minikube
2 parents e5b8dd0 + 5c1af97 commit 24877f6

File tree

51 files changed

+2830
-554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2830
-554
lines changed

assets/scss/_base.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ footer {
6565
.button {
6666
display: inline-block;
6767
border-radius: 6px;
68-
padding: 0 20px;
69-
line-height: 40px;
68+
padding: 6px 20px;
69+
line-height: 1.3rem;
7070
color: white;
7171
background-color: $blue;
7272
text-decoration: none;

content/de/docs/setup/minikube.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Minikube unterstützt die folgenden Treiber:
3838
* kvm ([Treiber installation](https://minikube.sigs.k8s.io/docs/drivers/#kvm-driver))
3939
* hyperkit ([Treiber installation](https://minikube.sigs.k8s.io/docs/drivers/#hyperkit-driver))
4040
* xhyve ([Treiber installation](https://minikube.sigs.k8s.io/docs/drivers/#xhyve-driver)) (deprecated)
41-
* hyperv ([Treiber installation](https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#hyperv-driver))
41+
* hyperv ([Treiber installation](https://minikube.sigs.k8s.io/docs/drivers/#hyperv-driver))
4242
Beachten Sie, dass die unten angegebene IP-Adresse dynamisch ist und sich ändern kann. Sie kann mit `minikube ip` abgerufen werden.
4343
* none (Führt die Kubernetes-Komponenten auf dem Host und nicht in einer VM aus. Die Verwendung dieses Treibers erfordert Docker ([Docker installieren](https://docs.docker.com/install/linux/docker-ce/ubuntu/)) und eine Linux-Umgebung)
4444

content/en/docs/concepts/_index.md

Lines changed: 0 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -12,61 +12,3 @@ The Concepts section helps you learn about the parts of the Kubernetes system an
1212

1313

1414
<!-- body -->
15-
16-
## Overview
17-
18-
To work with Kubernetes, you use *Kubernetes API objects* to describe your cluster's *desired state*: what applications or other workloads you want to run, what container images they use, the number of replicas, what network and disk resources you want to make available, and more. You set your desired state by creating objects using the Kubernetes API, typically via the command-line interface, `kubectl`. You can also use the Kubernetes API directly to interact with the cluster and set or modify your desired state.
19-
20-
Once you've set your desired state, the *Kubernetes Control Plane* makes the cluster's current state match the desired state via the Pod Lifecycle Event Generator ([PLEG](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/node/pod-lifecycle-event-generator.md)). To do so, Kubernetes performs a variety of tasks automatically--such as starting or restarting containers, scaling the number of replicas of a given application, and more. The Kubernetes Control Plane consists of a collection of processes running on your cluster:
21-
22-
* The **Kubernetes Master** is a collection of three processes that run on a single node in your cluster, which is designated as the master node. Those processes are: [kube-apiserver](/docs/admin/kube-apiserver/), [kube-controller-manager](/docs/admin/kube-controller-manager/) and [kube-scheduler](/docs/admin/kube-scheduler/).
23-
* Each individual non-master node in your cluster runs two processes:
24-
* **[kubelet](/docs/admin/kubelet/)**, which communicates with the Kubernetes Master.
25-
* **[kube-proxy](/docs/admin/kube-proxy/)**, a network proxy which reflects Kubernetes networking services on each node.
26-
27-
## Kubernetes objects
28-
29-
Kubernetes contains a number of abstractions that represent the state of your system: deployed containerized applications and workloads, their associated network and disk resources, and other information about what your cluster is doing. These abstractions are represented by objects in the Kubernetes API. See [Understanding Kubernetes objects](/docs/concepts/overview/working-with-objects/kubernetes-objects/#kubernetes-objects) for more details.
30-
31-
The basic Kubernetes objects include:
32-
33-
* [Pod](/docs/concepts/workloads/pods/pod-overview/)
34-
* [Service](/docs/concepts/services-networking/service/)
35-
* [Volume](/docs/concepts/storage/volumes/)
36-
* [Namespace](/docs/concepts/overview/working-with-objects/namespaces/)
37-
38-
Kubernetes also contains higher-level abstractions that rely on [controllers](/docs/concepts/architecture/controller/) to build upon the basic objects, and provide additional functionality and convenience features. These include:
39-
40-
* [Deployment](/docs/concepts/workloads/controllers/deployment/)
41-
* [DaemonSet](/docs/concepts/workloads/controllers/daemonset/)
42-
* [StatefulSet](/docs/concepts/workloads/controllers/statefulset/)
43-
* [ReplicaSet](/docs/concepts/workloads/controllers/replicaset/)
44-
* [Job](/docs/concepts/workloads/controllers/job/)
45-
46-
## Kubernetes Control Plane
47-
48-
The various parts of the Kubernetes Control Plane, such as the Kubernetes Master and kubelet processes, govern how Kubernetes communicates with your cluster. The Control Plane maintains a record of all of the Kubernetes Objects in the system, and runs continuous control loops to manage those objects' state. At any given time, the Control Plane's control loops will respond to changes in the cluster and work to make the actual state of all the objects in the system match the desired state that you provided.
49-
50-
For example, when you use the Kubernetes API to create a Deployment, you provide a new desired state for the system. The Kubernetes Control Plane records that object creation, and carries out your instructions by starting the required applications and scheduling them to cluster nodes--thus making the cluster's actual state match the desired state.
51-
52-
### Kubernetes Master
53-
54-
The Kubernetes master is responsible for maintaining the desired state for your cluster. When you interact with Kubernetes, such as by using the `kubectl` command-line interface, you're communicating with your cluster's Kubernetes master.
55-
56-
> The "master" refers to a collection of processes managing the cluster state. Typically all these processes run on a single node in the cluster, and this node is also referred to as the master. The master can also be replicated for availability and redundancy.
57-
58-
### Kubernetes Nodes
59-
60-
The nodes in a cluster are the machines (VMs, physical servers, etc) that run your applications and cloud workflows. The Kubernetes master controls each node; you'll rarely interact with nodes directly.
61-
62-
63-
64-
65-
## {{% heading "whatsnext" %}}
66-
67-
68-
If you would like to write a concept page, see
69-
[Page Content Types](/docs/contribute/style/page-content-types/#concept)
70-
for information about the concept page types.
71-
72-
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "Cluster Architecture"
33
weight: 30
4+
description: >
5+
The architectural concepts behind Kubernetes.
46
---
57

Lines changed: 70 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
---
2-
title: "Cluster Administration"
2+
title: Cluster Administration
3+
reviewers:
4+
- davidopp
5+
- lavalamp
36
weight: 100
7+
content_type: concept
8+
description: >
9+
Lower-level detail relevant to creating or administering a Kubernetes cluster.
410
---
511

12+
<!-- overview -->
13+
The cluster administration overview is for anyone creating or administering a Kubernetes cluster.
14+
It assumes some familiarity with core Kubernetes [concepts](/docs/concepts/).
15+
16+
17+
<!-- body -->
18+
## Planning a cluster
19+
20+
See the guides in [Setup](/docs/setup/) for examples of how to plan, set up, and configure Kubernetes clusters. The solutions listed in this article are called *distros*.
21+
22+
{{< note >}}
23+
Not all distros are actively maintained. Choose distros which have been tested with a recent version of Kubernetes.
24+
{{< /note >}}
25+
26+
Before choosing a guide, here are some considerations:
27+
28+
- Do you just want to try out Kubernetes on your computer, or do you want to build a high-availability, multi-node cluster? Choose distros best suited for your needs.
29+
- Will you be using **a hosted Kubernetes cluster**, such as [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine/), or **hosting your own cluster**?
30+
- Will your cluster be **on-premises**, or **in the cloud (IaaS)**? Kubernetes does not directly support hybrid clusters. Instead, you can set up multiple clusters.
31+
- **If you are configuring Kubernetes on-premises**, consider which [networking model](/docs/concepts/cluster-administration/networking/) fits best.
32+
- Will you be running Kubernetes on **"bare metal" hardware** or on **virtual machines (VMs)**?
33+
- Do you **just want to run a cluster**, or do you expect to do **active development of Kubernetes project code**? If the
34+
latter, choose an actively-developed distro. Some distros only use binary releases, but
35+
offer a greater variety of choices.
36+
- Familiarize yourself with the [components](/docs/admin/cluster-components/) needed to run a cluster.
37+
38+
39+
## Managing a cluster
40+
41+
* [Managing a cluster](/docs/tasks/administer-cluster/cluster-management/) describes several topics related to the lifecycle of a cluster: creating a new cluster, upgrading your cluster’s master and worker nodes, performing node maintenance (e.g. kernel upgrades), and upgrading the Kubernetes API version of a running cluster.
42+
43+
* Learn how to [manage nodes](/docs/concepts/nodes/node/).
44+
45+
* Learn how to set up and manage the [resource quota](/docs/concepts/policy/resource-quotas/) for shared clusters.
46+
47+
## Securing a cluster
48+
49+
* [Certificates](/docs/concepts/cluster-administration/certificates/) describes the steps to generate certificates using different tool chains.
50+
51+
* [Kubernetes Container Environment](/docs/concepts/containers/container-environment/) describes the environment for Kubelet managed containers on a Kubernetes node.
52+
53+
* [Controlling Access to the Kubernetes API](/docs/reference/access-authn-authz/controlling-access/) describes how to set up permissions for users and service accounts.
54+
55+
* [Authenticating](/docs/reference/access-authn-authz/authentication/) explains authentication in Kubernetes, including the various authentication options.
56+
57+
* [Authorization](/docs/reference/access-authn-authz/authorization/) is separate from authentication, and controls how HTTP calls are handled.
58+
59+
* [Using Admission Controllers](/docs/reference/access-authn-authz/admission-controllers/) explains plug-ins which intercepts requests to the Kubernetes API server after authentication and authorization.
60+
61+
* [Using Sysctls in a Kubernetes Cluster](/docs/concepts/cluster-administration/sysctl-cluster/) describes to an administrator how to use the `sysctl` command-line tool to set kernel parameters .
62+
63+
* [Auditing](/docs/tasks/debug-application-cluster/audit/) describes how to interact with Kubernetes' audit logs.
64+
65+
### Securing the kubelet
66+
* [Master-Node communication](/docs/concepts/architecture/master-node-communication/)
67+
* [TLS bootstrapping](/docs/reference/command-line-tools-reference/kubelet-tls-bootstrapping/)
68+
* [Kubelet authentication/authorization](/docs/admin/kubelet-authentication-authorization/)
69+
70+
## Optional Cluster Services
71+
72+
* [DNS Integration](/docs/concepts/services-networking/dns-pod-service/) describes how to resolve a DNS name directly to a Kubernetes service.
73+
74+
* [Logging and Monitoring Cluster Activity](/docs/concepts/cluster-administration/logging/) explains how logging in Kubernetes works and how to implement it.

content/en/docs/concepts/cluster-administration/cluster-administration-overview.md

Lines changed: 0 additions & 73 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "Configuration"
33
weight: 80
4+
description: >
5+
Resources that Kubernetes provides for configuring Pods.
46
---
57

content/en/docs/concepts/containers/_index.md

100755100644
Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
---
2-
title: "Containers"
2+
title: Containers
33
weight: 40
4+
description: Technology for packaging an application along with its runtime dependencies.
5+
reviewers:
6+
- erictune
7+
- thockin
8+
content_type: concept
49
---
510

11+
<!-- overview -->
12+
13+
Each container that you run is repeatable; the standardization from having
14+
dependencies included means that you get the same behavior wherever you
15+
run it.
16+
17+
Containers decouple applications from underlying host infrastructure.
18+
This makes deployment easier in different cloud or OS environments.
19+
20+
21+
22+
23+
<!-- body -->
24+
25+
## Container images
26+
A [container image](/docs/concepts/containers/images/) is a ready-to-run
27+
software package, containing everything needed to run an application:
28+
the code and any runtime it requires, application and system libraries,
29+
and default values for any essential settings.
30+
31+
By design, a container is immutable: you cannot change the code of a
32+
container that is already running. If you have a containerized application
33+
and want to make changes, you need to build a new container that includes
34+
the change, then recreate the container to start from the updated image.
35+
36+
## Container runtimes
37+
38+
{{< glossary_definition term_id="container-runtime" length="all" >}}
39+
40+
## {{% heading "whatsnext" %}}
41+
42+
* Read about [container images](/docs/concepts/containers/images/)
43+
* Read about [Pods](/docs/concepts/workloads/pods/)
44+

content/en/docs/concepts/containers/overview.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)