Skip to content

Commit dc3016c

Browse files
authored
Merge pull request #1 from kubernetes/master
Update from upstream
2 parents 40e80ba + 0f0ccd1 commit dc3016c

File tree

3,935 files changed

+254946
-670220
lines changed

Some content is hidden

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

3,935 files changed

+254946
-670220
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2-
> For 1.9 Features: set Milestone to `1.9` and Base Branch to `release-1.9`
3-
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4-
> NOTE: Please check the “Allow edits from maintainers” box (see image below) to
5-
> [allow reviewers to fix problems](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) on your patch and speed up the review process.
1+
> NOTE: After opening the PR, please *un-check and re-check* the ["Allow edits from maintainers"](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) box so that maintainers can work on your patch and speed up the review process. This is a temporary workaround to address a known issue with GitHub.>
62
>
73
> Please delete this note before submitting the pull request.
8-
>
9-
> NOTE: After opening the PR, please *un-check and re-check* the "Allow edits from maintainers" box. This is a temporary workaround to address a known issue with GitHub.
104
115
![Allow edits from maintainers checkbox](https://help.github.com/assets/images/help/pull_requests/allow-maintainers-to-make-edits-sidebar-checkbox.png)

_config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,21 @@ defaults:
1818
scope:
1919
path: ""
2020
values:
21-
fullversion: "v1.8.0"
22-
version: "v1.8"
21+
fullversion: "v1.9.0"
22+
version: "v1.9"
2323
githubbranch: "master"
2424
docsbranch: "master"
2525
versions:
26-
- fullversion: "v1.8.0"
26+
- fullversion: "v1.9.0"
27+
version: "v1.9"
28+
githubbranch: "v1.9.0"
29+
docsbranch: "release-1.9"
30+
url: https://kubernetes.io/docs/home/
31+
- fullversion: "v1.8.4"
2732
version: "v1.8"
28-
githubbranch: "v1.8.0"
33+
githubbranch: "v1.8.4"
2934
docsbranch: "release-1.8"
30-
url: https://kubernetes.io/docs/home/
35+
url: https://v1-8.docs.kubernetes.io/docs/home/
3136
- fullversion: "v1.7.6"
3237
version: "v1.7"
3338
githubbranch: "v1.7.6"
@@ -43,11 +48,6 @@ defaults:
4348
githubbranch: "v1.5.7"
4449
docsbranch: "release-1.5"
4550
url: https://v1-5.docs.kubernetes.io/docs/
46-
- fullversion: "v1.4.12"
47-
version: "v1.4"
48-
githubbranch: "v1.4.12"
49-
docsbranch: "release-1.4"
50-
url: https://v1-4.docs.kubernetes.io/docs/
5151
deprecated: false
5252
currentUrl: https://kubernetes.io/docs/home/
5353
nextUrl: http://kubernetes-io-vnext-staging.netlify.com/

_data/concepts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ toc:
2424

2525
- title: Extending Kubernetes
2626
section:
27+
- docs/concepts/overview/extending.md
2728
- title: Extending the Kubernetes API
2829
section:
2930
- docs/concepts/api-extension/apiserver-aggregation.md

_data/glossary/annotation.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
id: annotation
2+
name: Annotation
3+
full-link: docs/concepts/overview/working-with-objects/annotations
4+
tags:
5+
- fundamental
6+
short-description: >
7+
A key-value pair that is used to attach arbitrary non-identifying metadata to objects.
8+
long-description: >
9+
The metadata in an annotation can be small or large, structured or unstructured, and can include characters not permitted by labels. Clients such as tools and libraries can retrieve this metadata.

_data/glossary/configmap.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
id: configmap
2+
name: ConfigMap
3+
full-link: /docs/tasks/configure-pod-container/configmap/
4+
related:
5+
- pod
6+
- secret
7+
tags:
8+
- core-object
9+
short-description: >
10+
An API object used to store non-confidential data in key-value pairs. Can be consumed as environment variables, command-line arguments, or config files in a {% glossary_tooltip text="volume" term_id="volume" %}.
11+
long-description: >
12+
Allows you to decouple environment-specific configuration from your {% glossary_tooltip text="container images" term_id="container" %}, so that your applications are easily portable.
13+
When storing confidential data use a [Secret](https://kubernetes.io/docs/concepts/configuration/secret/).

_data/glossary/daemonset.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
id: daemonset
2+
name: DaemonSet
3+
full-link: /docs/concepts/workloads/controllers/daemonset
4+
tags:
5+
- fundamental
6+
- workload
7+
short-description: >
8+
Ensures a copy of a {% glossary_tooltip term_id="pod" %} is running across a set of nodes in a {% glossary_tooltip term_id="cluster" %}.
9+
long-description: >
10+
Used to deploy system daemons such as log collectors and monitoring agents that typically must run on every {% glossary_tooltip term_id="node" %}.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
id: horizontal-pod-autoscaler
2+
name: Horizontal Pod Autoscaler
3+
full-link: /docs/tasks/run-application/horizontal-pod-autoscale/
4+
aka:
5+
- HPA
6+
related:
7+
- pod
8+
tags:
9+
- operation
10+
short-description: >
11+
An API resource that automatically scales the number of pod replicas based on targeted CPU
12+
utilization or custom metric targets.
13+
long-description: >
14+
HPA is typically used with replication controllers, deployments or replica sets and cannot be
15+
applied to objects that cannot be scaled, for example DaemonSets.

_data/glossary/image.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
id: image
2+
name: Image
3+
tags:
4+
- fundamental
5+
short-description: >
6+
Stored instance of a container that holds a set of software needed to run an application.
7+
long-description: >
8+
A way of packaging software that allows it to be stored in a container registry, pulled to a local system, and run as an application. Meta data is included in the image that can indicate what executable to run, who built it, and other information.
9+

_data/glossary/job.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
id: job
2+
name: Job
3+
full-link: /docs/concepts/workloads/controllers/jobs-run-to-completion
4+
tags:
5+
- core-object
6+
short-description: >
7+
A finite or batch task that runs to completion.
8+
long-description: >
9+
Creates one or more {% glossary_tooltip term_id="pod" %} objects and ensures that a specified number of them successfully terminate. As Pods successfully complete, the Job tracks the successful completions.

_data/glossary/kubelet.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
id: kubelet
2+
name: Kubelet
3+
full-link: docs/reference/generated/kubelet
4+
tags:
5+
- fundamental
6+
- core-object
7+
short-description: >
8+
An agent that runs on each node in the cluster. It makes sure that containers are running in a pod.
9+
long-description: >
10+
The kubelet takes a set of PodSpecs that are provided through various mechanisms and ensures that the containers described in those PodSpecs are running and healthy. The kubelet doesn’t manage containers which were not created by Kubernetes.

0 commit comments

Comments
 (0)