Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cloud Native Security Intro #14495

Merged
merged 6 commits into from May 30, 2019
Merged

Cloud Native Security Intro #14495

merged 6 commits into from May 30, 2019

Conversation

zparnold
Copy link
Member

This pull request does a few things:

  • Provides a mental model for cluster operators and users to understand how and what components in software need to be secured
  • Provide greater visibility into our own docs for relevant areas of security related work that would benefit cluster operators

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. language/en Issues or PRs related to English language sig/docs Categorizes an issue or PR as relevant to SIG Docs. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels May 23, 2019
@zparnold
Copy link
Member Author

/assign @zacharysarah
/cc @jimangel @Bradamant3

@netlify
Copy link

netlify bot commented May 23, 2019

Deploy preview for kubernetes-io-master-staging ready!

Built with commit 87999d3

https://deploy-preview-14495--kubernetes-io-master-staging.netlify.com

@zparnold
Copy link
Member Author

@liggitt would you be able to ensure that this is technically sound?
/cc @liggitt

@k8s-ci-robot k8s-ci-robot requested a review from liggitt May 24, 2019 09:10
Area of Concern for Workload Security | Recommendation |
------------------------------ | ------------ |
RBAC Authorization (Access to the Kubernetes API) | https://kubernetes.io/docs/reference/access-authn-authz/rbac/
Authentication | https://kubernetes.io/docs/reference/access-authn-authz/controlling-access/

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both of these links are referenced indirectly on line 92 above (assuming the securing-a-cluster link is what we plan to link to).

As a reader, I wonder why RBAC is mentioned in both places? Maybe it's worth calling out explicitly that RBAC plays important roles in securing the cluster (e.g., the API itself, authorization between components with service accounts) and securing things within the deployment (e.g., pods, namespaces). At first glance, a reader might interpret RBAC and authorization as a tool exclusively for only accomplishing one of those goals.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that is definitely a goal. This page however is the jumping off point. We will be re-organizing a good chunk of the kubernetes documentation over the lifecycle of our working group.

Microsoft Azure | https://docs.microsoft.com/en-us/azure/security/azure-security |
IBM Cloud | https://www.ibm.com/cloud/security |
Alibaba Cloud | https://www.alibabacloud.com/trust-center |

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{{< /note >}}

{{< figure src="/images/docs/4c.png" title="The 4C's of Cloud Native Security" >}}
<br/><br/><br/>
Copy link
Member

@jimangel jimangel May 24, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know if these html <BR> breaks need to be here or not.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll get rid of them


## Container

The price of admission to a Kubernetes cluster is a container. Because of this,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can this be stated in a more universal way? I have no problems with it as is, as a native English speaker.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree. A container is a fundamental component.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

Copy link
Member

@jimangel jimangel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is awesome! Great work! I added a few nits. It might be worth adding at the bottom a link to https://kubernetes.io/blog/2018/07/18/11-ways-not-to-get-hacked/ also.

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label May 24, 2019
@sftim
Copy link
Contributor

sftim commented May 24, 2019

I like this document, a lot.
Would it work as a blog post? (I think it would). Posting on the Kubernetes blog has a big reach and provides a stable URI that people can reference and discuss.

Concepts and approaches that started off in a single blog post have gained incredibly wide adoption; for example, the concept of a WebHook. That's the kind of thing (maybe on a smaller scale) I'd be hoping for here.

@zparnold
Copy link
Member Author

@sftim I think you're absolutely right, and I will formulate an announcement post. My plan here though was to begin another user journey focused on security. I would like for a little more content organization and cleanup to happen around the security docs before we do that. What do you think?

@sftim
Copy link
Contributor

sftim commented May 25, 2019

As this is a concept guide, I'd suggest taking some of the technologies out and instead talking about a principle. (It's OK to mention a technology as an example).

To illustrate this concern / suggestion:

  • In the draft, “Network access to API Server” suggests using filtering by client IP address. That's a sensible recommendation, definitely. Imagine though that I set up a Kubernetes API endpoint that allows API port access from a restricted set of peers and overall pretty locked down. Then I allow ICMP ECHO to the endpoint IP address from anywhere on the internet. I want that to be something that's permitted, so long as I've thought about my reasons for doing that.
  • The draft talks about etcd in the Area of Concern for Workload Security.
    • The choice of etcd is an implementation detail, and there are clusters that have it swapped out for something else.
  • Where the draft talks about TLS, I'd put “encryption in transit” (and then mention TLS as the technology that Kubernetes has selected to deliver that).
  • Image signing is a particular approach; the challenge it addresses is around integrity and trust.
    Signing images can be part of a good solution - you also have to validate the signatures and trust the signer.

I'd like the final version of this document to express a set of principles that let cluster operators and people reviewing cluster designs make an opinion based on those principles. For that reason, I'm cautious about writing principles that are unintentionally prescriptive.

@sftim
Copy link
Contributor

sftim commented May 25, 2019

Where's the right place in this document to tell people to consider whether their storage (Volumes, etc) should be encrypted at rest?

The price of admission to a Kubernetes cluster is a container. Because of this,
there are certain security considerations that must be taken into account in order
to benefit from the workload security primitives of Kubernetes. Container security
is also outside the scope of this article, but we will provide a table of general
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have an opinion on the contents of container images?

  • Maybe it's not in scope; if it breaks, the person who broke it gets to keep both halves
  • Maybe there's some guidance even if the ultimate responsibility lives elsewhere
    • don't hard-code secrets into container images
    • if your code is proprietary, consider how to make sure it stays secret
    • consider information security when selecting a container runtime
    • choose how you isolate containers from one another (different Pods? separate Nodes? multiple Namespaces?)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Again, is this an article?
  • Clean up the use of we and reword the sentence leading up to the table

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cleaned up we and article

Alibaba Cloud | https://www.alibabacloud.com/trust-center |

If you are running on your own hardware or a different cloud provider you will need to
consult your documentation for security best practices.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we capture some overarching principles, ones that we think any cluster operator should have regard to?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, below :)

## Cloud

In many ways, the Cloud (or Co-Located Servers, or Corporate Datacenter) is the
[trusted computing base](https://en.wikipedia.org/wiki/Trusted_computing_base)
Copy link
Contributor

@sftim sftim May 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In a separate issue (and, later, documentation page), maybe it's possible to document the Kubernetes trusted computing base for a working cluster.

A page about Kubernetes' TCB could complement this one about principles.

Suggested TCB elements
  • API server
  • Security-critical controllers running in the control plane
  • Cluster DNS
  • Container runtime(s)
    • Assuming the runtime relies on Linux security properties, the kernel and its TCB
  • Node system userland tools (including kubelet and kube-proxy), because:
    • these able to run outside a Pod
    • these tools need to protect the nodes from rogue Pods. A node that allowed host-based rlogin from anywhere should have no place in a secure cluster design

How does that sound?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I love it, I'm gonna pin this comment for the next iteration and file it as an issue against this page.

In many ways, the Cloud (or Co-Located Servers, or Corporate Datacenter) is the
[trusted computing base](https://en.wikipedia.org/wiki/Trusted_computing_base)
of a Kubernetes cluster. If these components themselves are vulnerable (or
configured in a vulnerable way,) then there's no real way to guarantee the security
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need the parens?

of a Kubernetes cluster. If these components themselves are vulnerable (or
configured in a vulnerable way,) then there's no real way to guarantee the security
of any components built on top of this base. Each cloud provider has numerous
security recommendations they make to their customers on how to run workloads securely
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

numerous vs detailed or extensive?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like extensive. Thanks!

of any components built on top of this base. Each cloud provider has numerous
security recommendations they make to their customers on how to run workloads securely
in their environment. It is out of the scope of this article to give recommendations
on cloud security since every cloud provider and workload is different. We will
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reword article?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

in their environment. It is out of the scope of this article to give recommendations
on cloud security since every cloud provider and workload is different. We will
however provide links to some of the popular cloud providers' own documentation
for security as well as give general guidance for securing the infrastructure that
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could this area be reworded: ... popular cloud providers' [own] security documentation ...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded

Google Cloud Platform | https://cloud.google.com/security/ |
Microsoft Azure | https://docs.microsoft.com/en-us/azure/security/azure-security |
IBM Cloud | https://www.ibm.com/cloud/security |
Alibaba Cloud | https://www.alibabacloud.com/trust-center |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alphabetize the providers by name?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, done and done

Network access to Nodes (Worker Servers) | Nodes should be configured to _only_ accept connections (via network access control lists) from the masters on the specified ports, and accept connections for services in Kubernetes of type `NodePort` and `LoadBalancer`. If possible, this nodes should not exposed on the public internet entirely.
Kubernetes access to Cloud Provider API | Each cloud provider will need to grant a different set of permissions to the Kubernetes Masters and Nodes, so this recommendation will be more generic. It is best to provide the cluster with cloud provider access that follows the [principle of least privilege](https://en.wikipedia.org/wiki/Principle_of_least_privilege) for the resources it needs to administer. An example for Kops in AWS can be found here: https://github.com/kubernetes/kops/blob/master/docs/iam_roles.md#iam-roles
Access to etcd | Access to etcd (the datastore of Kubernetes) should be limited to the masters only. Depending on your configuration you should also attempt to use etcd over TLS. More info can be found here: https://github.com/etcd-io/etcd/tree/master/Documentation#security
etcd Encryption | Wherever possible it's a good practice to encrypt all drives at rest, but since etcd holds the state of the entire cluster (including Secrets) its disk should especially be encrypted at rest.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • etcd vs any datastore?
  • be consistent in using markdown style links in the table

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

etcd is the datastore of kubernetes

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good call on styling

## Cluster

This section will provide links to more exploration for securing the aspects of
workloads in Kubernetes. There are essentially two areas of concern for securing
Copy link
Contributor

@kbhawkey kbhawkey May 29, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need, to more exploration
Do you need, the aspects of
Do you need, essentially

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, deleted. Thanks!


* Securing the components that are configurable which _make up_ the cluster
* Securing the components which run _in_ the cluster

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

italics needed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was trying to highlight the difference, deleting



### Components _of_ the Cluster
For more information on securing the components of the cluster, go [here](/docs/tasks/administer-cluster/securing-a-cluster).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you reword the go here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded

RBAC Authorization (Access to the Kubernetes API) | https://kubernetes.io/docs/reference/access-authn-authz/rbac/
Authentication | https://kubernetes.io/docs/reference/access-authn-authz/controlling-access/
Application secrets management (and encrypting them in etcd at rest) | https://kubernetes.io/docs/concepts/configuration/secret/ <br> https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/
Pod Security Policies | https://kubernetes.io/docs/concepts/policy/pod-security-policy/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Again, etcd is specifically called out
  • Clean up the <br?
  • Do you need to write out the links, as they are internal to the k8s docs?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

etcd is the brains of Kubernetes. You must use it in order to use Kubernetes. The <br> tag is there to force hugo's BlackFriday markdown engine to separate the links so they are more readable to an end user

Area of Concern for Containers | Recommendation |
------------------------------ | ------------ |
Container Vulnerability Scanning and OS Dependency Security | As part of an image build step or on a regular basis you should scan your containers for known vulnerabilities with a tool such as [CoreOS's Clair](https://github.com/coreos/clair/)
Image Signing and Enforcement | Two other CNCF Projects (TUF and Notary) are useful tools for signing container images and maintaining a system of trust for the content of your containers. If you use Docker, it is built in to the Docker Engine as [Docker Content Trust](https://docs.docker.com/engine/security/trust/content_trust/). On the enforcement piece, [IBM's Portieris](https://github.com/IBM/portieris) project is a tool that runs as a Kubernetes Dynamic Admission Controller to ensure that images are properly signed via Notary before being admitted to the Cluster.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure about suggesting specific tools; documenting generalized approaches seem easier to maintain

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They are, but this is the community accepted tool, so I don't have any other pointers outward except possibly OPA

## Code

Finally moving down into the application code level, this is one of the primary attack
surfaces over which you have the most control. This is also outside of the scope
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clean up: but we recommend a few of the following [what]?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cleaned up


Most of the above mentioned suggestions can actually be automated in your code
delivery pipeline as part of a series of checks in security. To learn about a
more "Continuous Hacking" approach to software delivery click (or tap) [this link](https://thenewstack.io/beyond-ci-cd-how-continuous-hacking-of-docker-containers-and-pipeline-driven-security-keeps-ygrene-secure/).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reword click (or tap) this link

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded

@jimangel
Copy link
Member

/lgtm
/approve

Discussion / improvement conversations can continue within this issue: #14646 for a future PR.

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label May 30, 2019
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jimangel

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 30, 2019
@k8s-ci-robot k8s-ci-robot merged commit 60266ff into kubernetes:master May 30, 2019
@Rajakavitha1
Copy link
Contributor

@sftim I think you're absolutely right, and I will formulate an announcement post. My plan here though was to begin another user journey focused on security. I would like for a little more content organization and cleanup to happen around the security docs before we do that. What do you think?

@zparnold how about https://kubernetes.io/docs/user-journeys/users/cluster-operator/intermediate/#section-2?

Rajakavitha1 pushed a commit to Rajakavitha1/website that referenced this pull request Jun 10, 2019
* initial aggregation of security recommendations

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Jim Angel <jimangel@users.noreply.github.com>

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* address concerns in PR comments
k8s-ci-robot pushed a commit that referenced this pull request Jun 17, 2019
* Fix typo (#14299)

* Correct publish date for blog post (#14302)

* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file. 
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
# replace x in 1.14.x-00 with the latest patch version
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting 

Corrected formatting

* Correcting number sequence 

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* improve translation

* cleanup component install to use new catalog feature (#14063)

* cleanup component install to use new catalog feature

sequence of operations

cleanup component install to use new catalog feature

* Update krib.md

* Fix dangling "pick-right-solution" references - English (#14468)

* Fix dangling references

* Redirect to setup

* english update only

* english update only

* Update last file

* word fix

* Add blog post about Kyma from CNCF landscape (#14266)

* Create 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Create test.md

* Add files via upload

* Delete test.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update content/en/blog/_posts/2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

Co-Authored-By: derberg <derberg@wp.pl>

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Add files via upload

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-23-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Fix typo "feedbacks" (#14505)

Feedback is uncountable, just a nitpick ;-)

* update link to front matter description (#14493)

Update the front matter link from jekyll to gohugo.

* Fix dead links related to Kubernetes object management (#14481)

* Translate Disruptions docs to Indonesian (#14395)

* Translate Disruptions docs to Indonesian

* Several changes regarding reviews:
- Use underscore for italic
- Italicize "cloud"
- Consistency of Disrupsi and Gangguan -> Use Disrupsi instead
- Change "usir" to italicized "evict"
- Change "pengontrol" to "pengendali"
- Change "kuras" to "drain"
- Emphasize first mention of disrupsi with bold instead
- Some typo and standard words fixes
- Fixes a potentially fatal translation of "hosting provider"
  - From "penyedia layanan cloud" to "penyedia layanan Kubernetes

* Initialize Taints and Tolerations in Bahasa Indonesia. (#14405)

* Initialize Taints and Tolerations in Bahasa Indonesia.

* Fix typos

* Choisir la bonne solution link updated! (#14483)

* Choisir la bonne solution link updated!



Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Choisir la bonne solution link updated!



Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Remove some spaces

* Update kubecon buttons on homepage (#14521)

* Update kubecon buttons on homepage

* Update _index.html

* Update cluster-administration-overview.md (#14510)

* Update cluster-administration-overview.md

according to #14442 and related with #14480

* Update cluster-administration-overview.md

* Update overview.md (#14424)

* Update overview.md

Fixed broken links for the Linuxacademy courses

* Update overview.md

* Add content/es/docs/reference/glossary/job.md (#14359)

* Agregado el termino Job al glosario

* Traducida la página de Job

* Update content/es/docs/reference/glossary/job.md

accepted reviewer changes

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/rkt.md (#14365)

* es/docs/references/glossary: Add rkt term

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add translations for Imperative Command for Bahasa Indonesia (#14064)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-command.md for Bahasa Indonesia

* Update translations for Imperative Command for Bahasa Indonesia

* Update URL in k8s.io/docs/tasks/federation/administer-federation/cluster/ (#14463)

* Add /content/fr/docs/reference/_index.md (#14528)

* Add /content/fr/docs/reference/_index.md

* translate title and title Link

* take out the approvers section

* replace design by conception

* Update content/fr/docs/reference/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update install-minikube.md (#14542)

The link https://github.com/kubernetes/minikube#other-ways-to-install doesn't exist anymore.
So either we remove the link to it or we fix the minikube README and add a new section for alternative ways to install minikube.
What do you think?

* Tidy & reword “Configure a Pod to Use a Projected Volume for Storage” (#14539)

* Reference glossary entry for Secret

* Fix code block format code

* Tidying & rewording

* Fix HTML typo (#14527)

* Add content/fr/docs/tutorials/_index.md (#14529)

* Add `content/fr/docs/tutorials/_index.md

* The navigation menu was broken without it.
* Translation from `content/en/docs/tutorials/_index.md`

* Update content/fr/docs/tutorials/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* fix kubernetes certified logo url (#14511)

Signed-off-by: harshvkarn <harshvardhan.karn@mayadata.io>

* Add more language specific slack channels (#14506)

* Add more country/language specific slack channels

* Fix Finnish slack channel

Co-Authored-By: Markus Maga <markus@maga.se>

* Add spanish translation for node (#14360)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add container-environment-varibales concepts page (#14378)

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

Add raelga as reviewer

Co-Authored-By: Rael Garcia <me@rael.io>

Remove typo

Co-Authored-By: Rael Garcia <me@rael.io>

Add context to the link

Co-Authored-By: Rael Garcia <me@rael.io>

Change the word to more international one

Co-Authored-By: Rael Garcia <me@rael.io>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/cluster.md (#14472)

Co-Authored-By: Rael Garcia <me@rael.io>

* Fourth Korean localization work for release-1.14 (#14578)

This commit is the fourth Korean l10n work for release-1.14.

Change List

* Translate concepts/overview/object-management-kubectl/declarative-config in Korean (#14285)

* translate cron-jobs.md to korean + add _index.md (#14024)

* ko: update outdated files in dev-1.14-ko.4 #14207 (#14347)

* Translate standardized glossary Tag Workload in Korean (#14208)

* translate to content/ko/docs/concepts/cluster-administration/controll… (#14234)

* ko: update concepts, contribute, tasks in dev-1.14-ko.4 #14207 (#14502)

* ko: update cheatsheet in dev-1.14-ko.4  (#14515)

Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Kim Young Dae <38598117+zer0big@users.noreply.github.com>
Co-Authored-by:    Claudia J. Kang <claudiajkang@gmail.com>
Co-authored-by:    Yoon <learder@gmail.com>
Co-authored-by:    June Yi <june.yi@samsung.com>
Co-authored-by:    Seokho <shsongist@gmail.com>

* Updating blog OWNERS (#14338)

* Fix  content/es/docs/setup/_index.md (#14491)

Dangling "pick-right-solution" references kubernetes#14474
es docs redirection  404 fixed

* Add annotation page (#14358)

* Add content/es/docs/reference/glossary/sysctl.md (#14390)

Signed-off-by: Jose Luis Perez Diez <jluis@escomposlinux.org>

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>
Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* fix link to aws.go (#14550)

* fix link to aws.go

* fix link to aws.go

* Use shortcode for note in Kops glossary entry (#14534)

* Use note shortcode in kops glossary entry

This brings the entry closer to Kubernetes' style guide for
documentation.

* Reword kops glossary entry

- Write “Terraform” with a capital T (it's a proper noun)
- Adjust grammar

* Delete resources created during this task (#14536)

* [WIP] Clean up and reorganize minikube.md (#14255)

The current content was not following the style guide and lacked information on what the user was doing under the quick start section. Added more information and tested the section out. Further reorganized the content.

Correct typos

Updated the content.

Updated the content

Fixed syntax error.

Update the unordered list formatting

Fix formatting issues

Formatting update

Format the content

Format the content

Format content

Format ordered content

Format unordered list

Clean up and reorganize minikube.md

Updated the content

Updated the content as per the comments received.

Fixed an error

Fixes the note shortcode

Fixes error in shortcode

Clean up and reorganize minikube.md

* docs-fr | tutorials | create-cluster (#14584)

* init pages tuto FR create-cluster

* typo

* update

* update index

* Update kubecon buttons on homepage fr (#14587)

update

* Fix OpenAPI deprecated endpoints in Kubernetes 1.14 (#14608)

* Reword glossary entry for etcd (#14621)

* Link to official etcd documentation

* Reword etcd glossary entry

* Update etcd.md

* Update code of conduct based on upstream changes (#14612)

Level with upstream commit 214585e24aab747fb85c2ea44fbf4a2442e30de6

* Use `runtime/default` for seccomp. (#14616)

* Corrected documentation for kubectl tab completion on Mac (#14617)

* Corrects procedure to get tab completion on Mac

Tab completion only requires the installation of bash-completion and sourcing the bash_completion script. 

Installing bash-completion@2 doesn't work and source <(kubectl completion bash) is no longer necessary in the .bash_profile.

* Removed reference to other methods that don't work

* Update install-kubectl.md

* Fix reference to features state to beta (#14618)

* Fix reference to features state to beta

* Update device-plugins.md

* Update the pull Request template wording (#14619)

* [WIP]Fix typo

Fix typo

* Update PULL_REQUEST_TEMPLATE.md

* Update config option for openstack block storage (#14603)

* update config option for openstack block storage

* Update cloud-providers.md

* Remove initializers feature gate (#14602)

* Remove initializers feature gate

Initializers are removed in 1.14
kubernetes/kubernetes#72972

* Update feature-gates.md

* fix link to Storage Classes doc (#14551)

* correct the Feature:PodPriority in feature-gates.md (#14547)

* Remove initializers (ja) (#14626)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Update content/es/_index.html with new links (#14589)

* Update content/es/_index.html with new links

* Update _index.html

* Add content/es/docs/reference/glossary/service.md (#14361)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-developer.md (#14372)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/image.md (#14364)

* Add content/es/docs/reference/glossary/image.md

* Update content/es/docs/reference/glossary/image.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-architect.md (#14373)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/secret.md (#14356)

* Add content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Add translations for Imperative Config for Bahasa Indonesia (#14530)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-config.md for Bahasa Indonesia

* Update missing translations in imperative-config.md for Bahasa Indonesia

* Add  content/es/docs/reference/glossary/pod.md (#14368)

* Add  content/es/docs/reference/glossary/pod.md

Apply suggestions from code review

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/pod.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

* Fix typo (#14592)

* Cloud Native Security Intro (#14495)

* initial aggregation of security recommendations

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Jim Angel <jimangel@users.noreply.github.com>

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* address concerns in PR comments

* Document rounding behavior for PDBs (#14408)

* Document rounding behavior for PDBs

* Update content/en/docs/tasks/run-application/configure-pdb.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update configure-pdb.md

* content/es/docs/reference/glossary/selector (#14369)

* Add relevant glossary tooltips (#14632)

Guide reader to learn more about StatefulSet.

* Remove initializers (id) (#14655)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Remove initializers (zh) (#14654)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Fix Typo in the deprecation warning (#13488)

* Update minikube.md (#14662)

Fix linking in same document for preventing 404 errors because the url parts get duplicated now.
e.g: https://kubernetes.io/docs/setup/minikube/docs/setup/minikube/#interacting-with-your-cluster
fix would be: https://kubernetes.io/docs/setup/minikube/#interacting-with-your-cluster

* fix typo in install-kubeadm.md (#14680)

* New upstream commit for code of conduct (Portuguese) (#14630)

* Fix Container Environment Variables full link (#14663)

* fix typo in romana-network-policy.md (#14661)

* fix typos in configure-aggregation-layer.md (#14650)

* Link to 'Add image pull secret to service account' (#14669)

* Link to 'Add image pull secret to service account'

This page does not mention the fact that image pull secrets can be specified through a service account. So adding link to the section which gives details about 'adding image pull secret to service account'.

* Correcting link url

Correcting link url

* change to documentation ip adress #14664 (#14677)

* update feature-gates.md (#14635)

* Add german slack channel and maintainer (#14489)

* Add german slack channel and maintainer

* Update German Maintainer

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

* Updates kubernetes-basics (#14702)

Minor updates:
- Add a full stop.
- Removed the 'Start the tutorial›' section. The sections are already linked from 1 to 6 and this section doe not add any value after point 6.

* Updated target environments supported by Kublr (#14698)

* updating ICP version 3.1.2 to 3.2.0 (#14697)

* clean up feature state examples, style guide (#14699)

* small grammar fixes in overview/components.md (#14693)

Trival patch to fix a couple grammatical mistakes I found while going
through overview/components.md.

* Update secret.md (#14690)

fix (#解码-secret)

* document version changes of critical pod (#14684)

* document version changes of critical pod

* document system priority class name version requirement

* Update guaranteed-scheduling-critical-addon-pods.md

* Adapt docs for kubectl completion on macOS (#14636)

* Clarify behavior of parallel pod management policy (#14606)

* Fix typo: Update to hello-minikube (#14706)

* corrected example for private image string format (#14283)

without specifying registry details for `image` value, You will get following error if you are using a private registry even when your private images are hosted in docker.hub and you have valid credentials configured for the same.

Failed to pull image "xxx/xxx-app:0.0.1": rpc error: code = Unknown desc = Error response from daemon: pull access denied for xxx/xxx-app, repository does not exist or may require 'docker login'

* Tweak glossary definition for Node (#14317)

* Tweak glossary definition for Node

The services (eg kubelet) that run on a Node are not the kind of
Service that the Kubernetes API knows about. Reword accordingly.

Also, highlight that Docker is one container runtime and that
there are others.

* Adopt suggestions from https://github.com/kubernetes/website/pull/14523

Co-Authored-By: Rael Garcia <me@rael.io>

* unhold the binaries on the worker nodes during upgrade (#14708)

* Improve Pivotal row in Production Setup table (#14648)

* Improve Pivotal row in Production Setup table.

- Provider column should contain company name
- Change check marks to product links to match other rows

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Spell out PKS abbreviation.

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Prefer "minikube delete" over "rm -rf ~/.minikube" (#14647)

Using `rm -Rf ~/.minikube` is not necessary in modern (v1.x) versions of minikube, and is highly discouraged as may can leave dangling VM's running, which minikube will fail to recover from. 

Example issue: https://github.com/kubernetes/minikube/issues/4377

* Reword documentation for Service concept (#14526)

* Reword glossary entry for Service

New wording should be more suitable for inclusion via a
glossary_definition shortcode.

* Improve What's Next section for Service concept

* Rename Services concept to singular

This matches other concept documentation, eg Deployment.

* Use documentation IP address range

1.2.3.4 is outside the blocks reserved for documentation.

* Reword Service concept description

Services direct traffic to Pods, not containers

* Write IPVS in uppercase

* Link from Security concept to related pages (#14726)

* Remove unneeded "groups" from CSR yaml example (#14723)

* fix homepage redirect of localized documentations (#14586)

* Add case studies from cncf.io (#14520)

* Add case studies from cncf.io

* Delete index.html

* Update index.html

* Update index.html

* Update index.html

* Update index.html

* remove Financial Times

* update links

* fix typo en/fr (#14749)

* changed example domain to be **example.com** (#14740)

**your.private.registry.example.com** is a better choice of domain name for a non-existing sample domain name than calling it **yourprivateregistry.com**

refer #14283

* Fix a small typo (#14743)

* Update images.md (#14736)

* Update images.md

* Update content/en/docs/concepts/containers/images.md

That works fine and thank you.

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Add KubeOne as AWS turnkey solution (#14737)

* Fix typo in limit-range.md. (#14730)

* use glossary defs in overview/components.md (#14721)

This patch promotes re-use of the existing kube-proxy glossary
definition by referencing it from overview/components.md. Similarly, we
move the definition of Container Runtime into a new glossary definition
so that other pages may refer to it.

* Kubespray supports Custom VM and BareMetal (#14717)

Kubespray supports Custom (On-premises VMs) & Custom (Bare Metal). 

https://kubespray.io states:

> Can be deployed on AWS, GCE, Azure, OpenStack, vSphere, Packet (bare metal), Oracle Cloud Infrastructure (Experimental), or Baremetal

* fix markdown format (#14756)

![screenshot](https://silenceshell-1255345740.cos.ap-shanghai.myqcloud.com/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-06-06%20%E4%B8%8A%E5%8D%8811.08.13.png)

* Update guestbook-logs-metrics-with-elk.md (#14755)

* Issue #14703 - Update Images.md (#14757)

* update pod-overview.md (#14758)

replaced the changed required in #14746

* Translate docs/tasks/configure-pod-container/attach-handler-lifecycle-event in Chinese (#14605)

* Add zh/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
Add zh/examples/pods/lifecycle-events.yaml

Translate zh/includes/task-tutorial-prereqs.md to chinese

* Apply suggestions from code review

Thanks for tengqm's review

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Apply suggestions from code review

Thanks for tengqm's help again

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Modify the order of text in markdown format

* Unified translation into 处理函数

* Update “Autoscale the DNS Service in a Cluster” (#14525)

* Mark code blocks for syntax highlighting

* Use glossary tooltips where appropriate

* Reword DNS horizontal autoscaling task

- Mention that addons manager is deprecated
- Use unordered list for “What's next”

* Note AMD64 instruction set assumption

* Update to more recent cluster-proportional-autoscaler

Based on sample configuration in https://raw.githubusercontent.com/kubernetes/kubernetes/beba9921aa1a73431bf322ffa17df6b2aa314b0c/cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

* Explain motivation for RuntimeClass (#14490)

* Update Calico to v3.7 (#14501)

* Update link and standardize language (#14482)

* Emphasize that cluster API v1 is deprecated (#14461)

* Rs rollingupdate (#14462)

* Redirect to Deployment docs

* Redirect to Deployment docs

* change using to use

* typo

* fix extra file

* line wrap Deployment

* Adding annotation example (#14440)

* Adding annotation example 

Adding example to show how annotation looks like in manifest.  This will help users to understand where exactly we can use the annotations whose details are already given on this page. Annotation `imageregistry: https://hub.docker.com/`  used intentionally to make it more relevant as earlier section talk about registry address  annotation.

* Resolving review comments

Resolving review comments

* setup/independent: fix cilium installation guide for kubeadm (#14411)

Signed-off-by: André Martins <aanm90@gmail.com>

* Adding example to show labels in POD yaml (#14439)

* Adding example to show labels in POD yaml

This page talk about labels and its usage. Also it talk about syntax for specifying labels. But it does not show how we can have labels in resource manifest. So with this PR i am adding example which shows that how we can have labels in pod manifest.

* Changes to resolve review comments

Changes to resolve review comments

* New upstream commit for code of conduct (Spanish) (#14631)

* revert on a name translation of card made by mistake (#14751)

* Revert "fix typo en/fr (#14749)" (#14750)

This reverts commit 07812a5ac847b29e49a508f743ed7cf7c07df1f4.

* docs-fr | concepts | services-networking | ingress (#13742)

* [docs-fr] init ingress.md

* [docs-fr] remove glossary

* [docs-fr] add definitions

* [docs-fr] add ingress spec

* add default backend and ingress types

* fix netlify error for the unfound yaml file

* [docs-fr] add TLS and loadbalancing

* [docs-fr] fix some french typos

* [docs-fr] replace 'équilibreur de charge' with 'load-balancer'

* [docs-fr] fix typo

* [docs-fr] fix french typos and syntax

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* [docs-fr] enhance syntax

* [docs-fr] update load-balancer spec

* [docs-fr] fix broken deployment

* [docs-fr] fix typos

* fix typo and wrong url (#14772)

* Fix typo, missing 's' for plural (#14783)

* Update bootstrap js because bootstrap 3.3.7 is vulnerable (#14775)

https://snyk.io/vuln/npm:bootstrap?lh=3.3.7&utm_source=lighthouse&utm_medium=ref&utm_campaign=audit

* small typo: extra verb (#14765)

* correct typo in home directory name (#14659)

home directory given as /etc/kuberentes/pki
should be /etc/kubernetes/pki

* Use Hugo extended for Sass/CSS (#13113)

* Correction: sysctl entries aren't annotations (#14796)

* Correction: sysctl entries aren't annotations 

First, thank you for your work on this documentation. It means so much to so many users. I found that the sysctl documentation linked here explains that sysctl pod security policy entries are in the spec field, not done via annotation. This corrects it, using as much of the original language as possible from the linked sysctl documentation.

* Update pod-security-policy.md

* Fixes PDB rounding docs (percentage as string instead of float) (#14788)

* Clarifies how to set `minAvailable` using a percentage

* Fixes other references to percentages

* improve arch/nodes.md info on Conditions and Allocatable (#14753)

* clarify Conditions section in arch/nodes.md

The field name is `conditions` (plural), so have the section name match
the field name. In addition, updates the JSON output of an individual
Condition to match all the fields returned in k8s 1.14+.

* add information about Allocatable to nodes.md

Since k8s 1.6, a Node object returns information about both the node's
capacity as well as the allocatable resources on the node. The latter is
a representation of the resources that are available for normal pods to
consume.

This patch adds information about capacity vs. allocatable to the
documentation about nodes and provides a link to where the reader can
find more information about reserving compute resources.

* Add missing logrotate component to logging with streaming sidecar image (#14780)

* recommended admission controllers are enabled by default (#14784)

Since the recommended ones are already enabled by default, they do not need to be explicitly specified with `--enable-admission-plugins`

* add link to default admission controllers (#14808)

* Add CSI type pv and description of CSI accessMode (#14798)

* Federation Remediation Part Deux  (#14140)

* first removal of federation

* more fixes

* Update service.md (#14804)

Removed one 'means' from incorrect repeat.

* fix padding for docs home on nav (#14807)

updated padding for docs home on nav
testing new sass->css, hugo extended

* Fixes the IP addresses shown in the ip-masq diagram. (#14789)

The diagram can now be edited in draw.io

Issue #13917

* Update install-minikube.md (#14776)

Add message displayed when Hyper-V is already installed.

* Updated podpreset.md to reflect changes in #71479 (#14764)

* Updated podpreset.md to reflect changes in #71479

See https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#other-notable-changes-3

* Refactored explanation to facilitate localization.

* Remove Port Proxy reference (#14769)

The repository is no longer maintained and deprecated

* add clux/kube-rs client (#14759)

* add clux/kube-rs client

add [clux/kube-rs](https://github.com/clux/kube-rs) to list of
[community-maintained client
libraries](https://kubernetes.io/docs/reference/using-api/client-libraries/#community-maintained-client-libraries)

* reorder

* Update control-plane-flags.md (#14729)

* add related note with pod deleted  (#14709)

* feat: add job application has some error and restartPolicy is not Nerver pod will be delete note

* feat: optimize delete pods related suggestion

* Update jobs-run-to-completion.md

* Update persistent-volumes.md (#14811)

Update PersistentVolume description.

* Add recommendation to use kms provider (#13264)

* Add recommendation to use kms provider

Add a warning to encrypting secrets documentation that if using a provider with secrets encryption, kms provider is preferred as it materially changes the threat model.

* Update encrypt-data.md

* Update encrypt-data.md

Updated to include kms provider is Beta sice 1.12

* Update encrypt-data.md

* Add comment about where to run probe (#13815)

* Add comment about where to run probe

Add comment about where to run probe

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* fix grammar nits

Signed-off-by: Xiang Dai <764524258@qq.com>

* updated recommend key path for multiple certificates . (#13895)

this is fix for issue #13892 " In certificate-path table, values of recommend key path for certificates are missing."

* update kubectl "$" format (#13256)

* Downloadable examples for “Run applications” section (#14147)

* Move examples ahead of commands that use them

In support of https://github.com/kubernetes/website/issues/12740

The aim is to adopt a consistent style around providing downloadable
examples for use with kubectl, etc.

* Tweak wording for stateful app pod example

* Adopt formatting conventions for code blocks

* Move ReplicationController sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Move PodDisruptionBudget sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Update test schema for new examples

* Use Unicode ellipsis in example

Aim here is to make the elision more obvious

* Split minikube install task into tabs (per-OS) (#14013)

* Put minikube install steps in per-OS tabs

* Work around nested <li> formatting issue

Using Markdown unordered lists inside tabs doesn't seem to work. These
changes are my work-around for that.

* Reword "laptop" to personal computer

Some computers aren't laptops

* Drop trailing whitespace

* Drop warning about removing other Mac hypervisors

* Add Ref to shared process namespaces (#14194)

* Add Ref to shared process namespaces

The article talking about ways container can talk to each other should include shared process namespace as a method

* Drop note on kube version in reference

* Check all commits in branch for examples (to trigger testing) (#14243)

* Check for examples changes in all branch commits

Review all the commits in the branch looking for changes inside
content/*/examples and if any are found, trigger testing.

This assumes that the main line branch is named "master"

* Tidy examples testing wrapper

 - print diagnostics to standard error
 - check for a "Yes" value rather than for absence of "No"

* Fix several potential issues with existing translation (#14785)

* some typos
* some weird formulations, copied from the original english sentence
* some missing translations

* Add accessibility guidelines to the style guide (#14292)

* [WIP] added accessibility guidelines to the style guide

Adopted the accessibility level A and AA guidelines to Markdown elements: 
https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&currentsidebar=%23col_overview&levels=aaa

We still need to define attributes for the front matter. See, https://github.com/kubernetes/website/issues/14286

I am yet to draft the guidelines for images and alt text.

* fixed the note

Update style-guide.md

Incorporated the changes suggested

Incorporated the changes suggested.

fixed the formatting  issues in the table

fixed the spaces in the links section

fixed a space issue

fixed format issues in the link

added a11y guidelines to code section

removed a spacing issue

front matter guidelines best fit the using template section

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

incorporated the changes

incorporated the changes

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

title section for front matter guideline

updated the html characters

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update style-guide.md

* Improve concept page for Ingress (#14313)

* Highlight feature state for Ingress concept

* Fix command output marked as shell script

* Write "load balancer" as two words

* Clarify prerequisites for Ingress

* Tidy & reword

* Add link to Ingress Controllers topic

(further reading)

* Use a glossary tooltip for Secret

(readers may not have encountered that concept yet)

* Update term definitions in Ingress concept

- Adopt wording from glossary
  (NB: glossary_definition shortcode didn't seem suitable)
- Replace terms with glossary_tooltip where appropriate

* Add all the _index files for the French translation (#14744)

* initial french translation (#14793)

* Restructure the left navigation pane of setup (#14826)

* restructure left nav

* Restructure setup left navigation

* Update _redirects

* Incorporated all the changes suggested

* removed the Thumbs.db file

* Update _index.md for Spanish (#14645)

* Update _index.md

* Update _index.md

* Add content/es/docs/reference/glossary/kubeadm.md (#14546)

* Add content/es/docs/reference/glossary/kubeadm.md

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/docker.md (#14553)

* Add content/es/docs/reference/glossary/docker.md

* Update content/es/docs/reference/glossary/docker.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Translate content/id/docs/concepts/cluster-administration/cluster-administration-overview.md into Portuguese (#14705)

* Added - Cluster Administration Overview as ptBR

* Fixed missing translation

* Fixed style

* rollback reviewers

* Add a script to check differences between translated and English version (#14731)

This script will query all the changes that happen to a reference document (in English) since the last time a given translation was merged (For instance in French).
This could help all the translation team to keep up with the changes that happened inside the reference document.

* fix a mistake in limit-range.md (#14836)

* Update field-selectors.md (#14839)

We should use --all-namespaces to filter all the service

* fix-zh-home (#14835)

* Update install-kubectl.md (#14840)

Add note: Docker for Windows adds its own kubectl to PATH

* 2 translated interactive tutorials for ES (#14417)

Signed-off-by: Ben Hall <ben@benhall.me.uk>

* Added blog post about the upcoming Contributor Summit Shanghai. (#14782)

* Added blog post about the upcoming Contributor Summit Shanghai.

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out CLA

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out KEP

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

define f2f

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

comma

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

add meeting

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

localized/internationalized

Co-Authored-By: chenrui <rui@meetup.com>

* Update and rename 2019-06-11-contributor-summit-shanghai.md to 2019-06-12-contributor-summit-shanghai.md

* Update out-of-resource.md (#14862)

add default value for housekeeping interval

* update pick-right-solution to setup page  (#14866)

* update pick-right-solution to setup page Fixes-14476

* update pick-right-solution to setup page #14866

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md (#14837)

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md

* s/贡献者峰会活动/贡献者峰会/

* s/不过/不论/

* Adopt PR suggestion

* s/你/您/

* s/当前贡献者节/现有贡献者活动/

* s/在亚洲和大洋洲的很多贡献者/很多亚洲和大洋洲的贡献者/

* s/新开发者/新贡献者/

* Adopt PR suggestion.

* s/上海会展中心/上海世博中心/

* s/工作者/贡献者/

* Refresh original English text as the related PR got merged

* Rename the filename to be consistent with English blog post PR

* remove useless file: whatisk8s.md (#14844)

* fix some typos in kubeadm init (#14864)

* Translate "Garbage Collection" page to Bahasa Indonesia (#14513)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* add Garbage Collection page in Bahasa Indonesia and minor fix on Pod Preset page

* remove replication.yaml

* add controllers/replicaset.yaml to example

* fix formatting error

* change dependent to dependen and fix note translation

* delete trailing space in heading

* Dangling "pick-right-solution" references - Italian  (#14806)

* Fixes-14477

* update pick-right-solution to setup page Fixes-14476

* update sentences and fix typo lang/it Fixes-14477

* Revert "update pick-right-solution to setup page Fixes-14476"

This reverts commit e949a7f3d4bc65fa91339d8d4b826e499e552455.

revert wrong commit

* Update _index.md (#14685)

* Fixed typo (#14845)

* Add content/es/docs/reference/glossary/kops.md (#14533)

* [docs-fr] add missing overview (#14815)

* translated term: container-runtime (#14921)

* Fifth Korean localization work for release-1.14 (#14578) (#14874)

Change List
* ko: add tutorials/clusters/apparmor #12455 (#14613)
* ko: add tasks/access-application-cluster/configure-dns-cluster (#14628)
* ko: add tasks/access-application-cluster/communicate-containers-same-… (#14627)
* ko: Update outdated files of setup and tasks in dev-1.14-ko.5 partly (#14683)
* translate to content/ko/docs/concepts/cluster-administration/cluster-… (#14237)
* Update renamed or deleted files in dev-1.14-ko.5 (#14710)
* Create pod.md (#13927)

Co-Authored-By:    Yoon <learder@gmail.com>
Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Claudia J. Kang <claudiajkang@gmail.com>

* fixing carousel Fixes ##14882 (#14895)

* translated term: container (#14909)

* translated glossary/aggregation-layer.md from en to fr (#14911)

* Tidy reference doc generation guide (#14825)

- fix YAML marked as shell
- trim trailing whitespace

* Tidy garbage collection controller page (#14856)

* Tidy code blocks

* Reword for better readability
k8s-ci-robot pushed a commit that referenced this pull request Jun 17, 2019
* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file. 
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
# replace x in 1.14.x-00 with the latest patch version
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting 

Corrected formatting

* Correcting number sequence 

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* improve translation

* cleanup component install to use new catalog feature (#14063)

* cleanup component install to use new catalog feature

sequence of operations

cleanup component install to use new catalog feature

* Update krib.md

* Fix dangling "pick-right-solution" references - English (#14468)

* Fix dangling references

* Redirect to setup

* english update only

* english update only

* Update last file

* word fix

* Add blog post about Kyma from CNCF landscape (#14266)

* Create 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Create test.md

* Add files via upload

* Delete test.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update content/en/blog/_posts/2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

Co-Authored-By: derberg <derberg@wp.pl>

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Add files via upload

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-23-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Fix typo "feedbacks" (#14505)

Feedback is uncountable, just a nitpick ;-)

* update link to front matter description (#14493)

Update the front matter link from jekyll to gohugo.

* Fix dead links related to Kubernetes object management (#14481)

* Translate Disruptions docs to Indonesian (#14395)

* Translate Disruptions docs to Indonesian

* Several changes regarding reviews:
- Use underscore for italic
- Italicize "cloud"
- Consistency of Disrupsi and Gangguan -> Use Disrupsi instead
- Change "usir" to italicized "evict"
- Change "pengontrol" to "pengendali"
- Change "kuras" to "drain"
- Emphasize first mention of disrupsi with bold instead
- Some typo and standard words fixes
- Fixes a potentially fatal translation of "hosting provider"
  - From "penyedia layanan cloud" to "penyedia layanan Kubernetes

* Initialize Taints and Tolerations in Bahasa Indonesia. (#14405)

* Initialize Taints and Tolerations in Bahasa Indonesia.

* Fix typos

* Choisir la bonne solution link updated! (#14483)

* Choisir la bonne solution link updated!



Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Choisir la bonne solution link updated!



Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Remove some spaces

* Update kubecon buttons on homepage (#14521)

* Update kubecon buttons on homepage

* Update _index.html

* Update cluster-administration-overview.md (#14510)

* Update cluster-administration-overview.md

according to #14442 and related with #14480

* Update cluster-administration-overview.md

* Update overview.md (#14424)

* Update overview.md

Fixed broken links for the Linuxacademy courses

* Update overview.md

* Add content/es/docs/reference/glossary/job.md (#14359)

* Agregado el termino Job al glosario

* Traducida la página de Job

* Update content/es/docs/reference/glossary/job.md

accepted reviewer changes

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/rkt.md (#14365)

* es/docs/references/glossary: Add rkt term

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add translations for Imperative Command for Bahasa Indonesia (#14064)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-command.md for Bahasa Indonesia

* Update translations for Imperative Command for Bahasa Indonesia

* Update URL in k8s.io/docs/tasks/federation/administer-federation/cluster/ (#14463)

* Add /content/fr/docs/reference/_index.md (#14528)

* Add /content/fr/docs/reference/_index.md

* translate title and title Link

* take out the approvers section

* replace design by conception

* Update content/fr/docs/reference/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update install-minikube.md (#14542)

The link https://github.com/kubernetes/minikube#other-ways-to-install doesn't exist anymore.
So either we remove the link to it or we fix the minikube README and add a new section for alternative ways to install minikube.
What do you think?

* Tidy & reword “Configure a Pod to Use a Projected Volume for Storage” (#14539)

* Reference glossary entry for Secret

* Fix code block format code

* Tidying & rewording

* Fix HTML typo (#14527)

* Add content/fr/docs/tutorials/_index.md (#14529)

* Add `content/fr/docs/tutorials/_index.md

* The navigation menu was broken without it.
* Translation from `content/en/docs/tutorials/_index.md`

* Update content/fr/docs/tutorials/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* fix kubernetes certified logo url (#14511)

Signed-off-by: harshvkarn <harshvardhan.karn@mayadata.io>

* Add more language specific slack channels (#14506)

* Add more country/language specific slack channels

* Fix Finnish slack channel

Co-Authored-By: Markus Maga <markus@maga.se>

* Add spanish translation for node (#14360)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add container-environment-varibales concepts page (#14378)

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

Add raelga as reviewer

Co-Authored-By: Rael Garcia <me@rael.io>

Remove typo

Co-Authored-By: Rael Garcia <me@rael.io>

Add context to the link

Co-Authored-By: Rael Garcia <me@rael.io>

Change the word to more international one

Co-Authored-By: Rael Garcia <me@rael.io>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/cluster.md (#14472)

Co-Authored-By: Rael Garcia <me@rael.io>

* Fourth Korean localization work for release-1.14 (#14578)

This commit is the fourth Korean l10n work for release-1.14.

Change List

* Translate concepts/overview/object-management-kubectl/declarative-config in Korean (#14285)

* translate cron-jobs.md to korean + add _index.md (#14024)

* ko: update outdated files in dev-1.14-ko.4 #14207 (#14347)

* Translate standardized glossary Tag Workload in Korean (#14208)

* translate to content/ko/docs/concepts/cluster-administration/controll… (#14234)

* ko: update concepts, contribute, tasks in dev-1.14-ko.4 #14207 (#14502)

* ko: update cheatsheet in dev-1.14-ko.4  (#14515)

Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Kim Young Dae <38598117+zer0big@users.noreply.github.com>
Co-Authored-by:    Claudia J. Kang <claudiajkang@gmail.com>
Co-authored-by:    Yoon <learder@gmail.com>
Co-authored-by:    June Yi <june.yi@samsung.com>
Co-authored-by:    Seokho <shsongist@gmail.com>

* Updating blog OWNERS (#14338)

* Fix  content/es/docs/setup/_index.md (#14491)

Dangling "pick-right-solution" references kubernetes#14474
es docs redirection  404 fixed

* Add annotation page (#14358)

* Add content/es/docs/reference/glossary/sysctl.md (#14390)

Signed-off-by: Jose Luis Perez Diez <jluis@escomposlinux.org>

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>
Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* fix link to aws.go (#14550)

* fix link to aws.go

* fix link to aws.go

* Use shortcode for note in Kops glossary entry (#14534)

* Use note shortcode in kops glossary entry

This brings the entry closer to Kubernetes' style guide for
documentation.

* Reword kops glossary entry

- Write “Terraform” with a capital T (it's a proper noun)
- Adjust grammar

* Delete resources created during this task (#14536)

* [WIP] Clean up and reorganize minikube.md (#14255)

The current content was not following the style guide and lacked information on what the user was doing under the quick start section. Added more information and tested the section out. Further reorganized the content.

Correct typos

Updated the content.

Updated the content

Fixed syntax error.

Update the unordered list formatting

Fix formatting issues

Formatting update

Format the content

Format the content

Format content

Format ordered content

Format unordered list

Clean up and reorganize minikube.md

Updated the content

Updated the content as per the comments received.

Fixed an error

Fixes the note shortcode

Fixes error in shortcode

Clean up and reorganize minikube.md

* docs-fr | tutorials | create-cluster (#14584)

* init pages tuto FR create-cluster

* typo

* update

* update index

* Update kubecon buttons on homepage fr (#14587)

update

* Fix OpenAPI deprecated endpoints in Kubernetes 1.14 (#14608)

* Reword glossary entry for etcd (#14621)

* Link to official etcd documentation

* Reword etcd glossary entry

* Update etcd.md

* Update code of conduct based on upstream changes (#14612)

Level with upstream commit 214585e24aab747fb85c2ea44fbf4a2442e30de6

* Use `runtime/default` for seccomp. (#14616)

* Corrected documentation for kubectl tab completion on Mac (#14617)

* Corrects procedure to get tab completion on Mac

Tab completion only requires the installation of bash-completion and sourcing the bash_completion script. 

Installing bash-completion@2 doesn't work and source <(kubectl completion bash) is no longer necessary in the .bash_profile.

* Removed reference to other methods that don't work

* Update install-kubectl.md

* Fix reference to features state to beta (#14618)

* Fix reference to features state to beta

* Update device-plugins.md

* Update the pull Request template wording (#14619)

* [WIP]Fix typo

Fix typo

* Update PULL_REQUEST_TEMPLATE.md

* Update config option for openstack block storage (#14603)

* update config option for openstack block storage

* Update cloud-providers.md

* Remove initializers feature gate (#14602)

* Remove initializers feature gate

Initializers are removed in 1.14
kubernetes/kubernetes#72972

* Update feature-gates.md

* fix link to Storage Classes doc (#14551)

* correct the Feature:PodPriority in feature-gates.md (#14547)

* Remove initializers (ja) (#14626)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Update content/es/_index.html with new links (#14589)

* Update content/es/_index.html with new links

* Update _index.html

* Add content/es/docs/reference/glossary/service.md (#14361)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-developer.md (#14372)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/image.md (#14364)

* Add content/es/docs/reference/glossary/image.md

* Update content/es/docs/reference/glossary/image.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-architect.md (#14373)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/secret.md (#14356)

* Add content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Add translations for Imperative Config for Bahasa Indonesia (#14530)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-config.md for Bahasa Indonesia

* Update missing translations in imperative-config.md for Bahasa Indonesia

* Add  content/es/docs/reference/glossary/pod.md (#14368)

* Add  content/es/docs/reference/glossary/pod.md

Apply suggestions from code review

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/pod.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

* Fix typo (#14592)

* Cloud Native Security Intro (#14495)

* initial aggregation of security recommendations

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Jim Angel <jimangel@users.noreply.github.com>

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* address concerns in PR comments

* Document rounding behavior for PDBs (#14408)

* Document rounding behavior for PDBs

* Update content/en/docs/tasks/run-application/configure-pdb.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update configure-pdb.md

* content/es/docs/reference/glossary/selector (#14369)

* Add relevant glossary tooltips (#14632)

Guide reader to learn more about StatefulSet.

* Remove initializers (id) (#14655)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Remove initializers (zh) (#14654)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Fix Typo in the deprecation warning (#13488)

* Update minikube.md (#14662)

Fix linking in same document for preventing 404 errors because the url parts get duplicated now.
e.g: https://kubernetes.io/docs/setup/minikube/docs/setup/minikube/#interacting-with-your-cluster
fix would be: https://kubernetes.io/docs/setup/minikube/#interacting-with-your-cluster

* fix typo in install-kubeadm.md (#14680)

* New upstream commit for code of conduct (Portuguese) (#14630)

* Fix Container Environment Variables full link (#14663)

* fix typo in romana-network-policy.md (#14661)

* fix typos in configure-aggregation-layer.md (#14650)

* Link to 'Add image pull secret to service account' (#14669)

* Link to 'Add image pull secret to service account'

This page does not mention the fact that image pull secrets can be specified through a service account. So adding link to the section which gives details about 'adding image pull secret to service account'.

* Correcting link url

Correcting link url

* change to documentation ip adress #14664 (#14677)

* update feature-gates.md (#14635)

* Add german slack channel and maintainer (#14489)

* Add german slack channel and maintainer

* Update German Maintainer

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

* Updates kubernetes-basics (#14702)

Minor updates:
- Add a full stop.
- Removed the 'Start the tutorial›' section. The sections are already linked from 1 to 6 and this section doe not add any value after point 6.

* Updated target environments supported by Kublr (#14698)

* updating ICP version 3.1.2 to 3.2.0 (#14697)

* clean up feature state examples, style guide (#14699)

* small grammar fixes in overview/components.md (#14693)

Trival patch to fix a couple grammatical mistakes I found while going
through overview/components.md.

* Update secret.md (#14690)

fix (#解码-secret)

* document version changes of critical pod (#14684)

* document version changes of critical pod

* document system priority class name version requirement

* Update guaranteed-scheduling-critical-addon-pods.md

* Adapt docs for kubectl completion on macOS (#14636)

* Clarify behavior of parallel pod management policy (#14606)

* Fix typo: Update to hello-minikube (#14706)

* corrected example for private image string format (#14283)

without specifying registry details for `image` value, You will get following error if you are using a private registry even when your private images are hosted in docker.hub and you have valid credentials configured for the same.

Failed to pull image "xxx/xxx-app:0.0.1": rpc error: code = Unknown desc = Error response from daemon: pull access denied for xxx/xxx-app, repository does not exist or may require 'docker login'

* Tweak glossary definition for Node (#14317)

* Tweak glossary definition for Node

The services (eg kubelet) that run on a Node are not the kind of
Service that the Kubernetes API knows about. Reword accordingly.

Also, highlight that Docker is one container runtime and that
there are others.

* Adopt suggestions from https://github.com/kubernetes/website/pull/14523

Co-Authored-By: Rael Garcia <me@rael.io>

* unhold the binaries on the worker nodes during upgrade (#14708)

* Improve Pivotal row in Production Setup table (#14648)

* Improve Pivotal row in Production Setup table.

- Provider column should contain company name
- Change check marks to product links to match other rows

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Spell out PKS abbreviation.

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Prefer "minikube delete" over "rm -rf ~/.minikube" (#14647)

Using `rm -Rf ~/.minikube` is not necessary in modern (v1.x) versions of minikube, and is highly discouraged as may can leave dangling VM's running, which minikube will fail to recover from. 

Example issue: https://github.com/kubernetes/minikube/issues/4377

* Reword documentation for Service concept (#14526)

* Reword glossary entry for Service

New wording should be more suitable for inclusion via a
glossary_definition shortcode.

* Improve What's Next section for Service concept

* Rename Services concept to singular

This matches other concept documentation, eg Deployment.

* Use documentation IP address range

1.2.3.4 is outside the blocks reserved for documentation.

* Reword Service concept description

Services direct traffic to Pods, not containers

* Write IPVS in uppercase

* Link from Security concept to related pages (#14726)

* Remove unneeded "groups" from CSR yaml example (#14723)

* fix homepage redirect of localized documentations (#14586)

* Add case studies from cncf.io (#14520)

* Add case studies from cncf.io

* Delete index.html

* Update index.html

* Update index.html

* Update index.html

* Update index.html

* remove Financial Times

* update links

* fix typo en/fr (#14749)

* changed example domain to be **example.com** (#14740)

**your.private.registry.example.com** is a better choice of domain name for a non-existing sample domain name than calling it **yourprivateregistry.com**

refer #14283

* Fix a small typo (#14743)

* Update images.md (#14736)

* Update images.md

* Update content/en/docs/concepts/containers/images.md

That works fine and thank you.

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Add KubeOne as AWS turnkey solution (#14737)

* Fix typo in limit-range.md. (#14730)

* use glossary defs in overview/components.md (#14721)

This patch promotes re-use of the existing kube-proxy glossary
definition by referencing it from overview/components.md. Similarly, we
move the definition of Container Runtime into a new glossary definition
so that other pages may refer to it.

* Kubespray supports Custom VM and BareMetal (#14717)

Kubespray supports Custom (On-premises VMs) & Custom (Bare Metal). 

https://kubespray.io states:

> Can be deployed on AWS, GCE, Azure, OpenStack, vSphere, Packet (bare metal), Oracle Cloud Infrastructure (Experimental), or Baremetal

* fix markdown format (#14756)

![screenshot](https://silenceshell-1255345740.cos.ap-shanghai.myqcloud.com/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-06-06%20%E4%B8%8A%E5%8D%8811.08.13.png)

* Update guestbook-logs-metrics-with-elk.md (#14755)

* Issue #14703 - Update Images.md (#14757)

* update pod-overview.md (#14758)

replaced the changed required in #14746

* Translate docs/tasks/configure-pod-container/attach-handler-lifecycle-event in Chinese (#14605)

* Add zh/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
Add zh/examples/pods/lifecycle-events.yaml

Translate zh/includes/task-tutorial-prereqs.md to chinese

* Apply suggestions from code review

Thanks for tengqm's review

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Apply suggestions from code review

Thanks for tengqm's help again

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Modify the order of text in markdown format

* Unified translation into 处理函数

* Update “Autoscale the DNS Service in a Cluster” (#14525)

* Mark code blocks for syntax highlighting

* Use glossary tooltips where appropriate

* Reword DNS horizontal autoscaling task

- Mention that addons manager is deprecated
- Use unordered list for “What's next”

* Note AMD64 instruction set assumption

* Update to more recent cluster-proportional-autoscaler

Based on sample configuration in https://raw.githubusercontent.com/kubernetes/kubernetes/beba9921aa1a73431bf322ffa17df6b2aa314b0c/cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

* Explain motivation for RuntimeClass (#14490)

* Update Calico to v3.7 (#14501)

* Update link and standardize language (#14482)

* Emphasize that cluster API v1 is deprecated (#14461)

* Rs rollingupdate (#14462)

* Redirect to Deployment docs

* Redirect to Deployment docs

* change using to use

* typo

* fix extra file

* line wrap Deployment

* Adding annotation example (#14440)

* Adding annotation example 

Adding example to show how annotation looks like in manifest.  This will help users to understand where exactly we can use the annotations whose details are already given on this page. Annotation `imageregistry: https://hub.docker.com/`  used intentionally to make it more relevant as earlier section talk about registry address  annotation.

* Resolving review comments

Resolving review comments

* setup/independent: fix cilium installation guide for kubeadm (#14411)

Signed-off-by: André Martins <aanm90@gmail.com>

* Adding example to show labels in POD yaml (#14439)

* Adding example to show labels in POD yaml

This page talk about labels and its usage. Also it talk about syntax for specifying labels. But it does not show how we can have labels in resource manifest. So with this PR i am adding example which shows that how we can have labels in pod manifest.

* Changes to resolve review comments

Changes to resolve review comments

* New upstream commit for code of conduct (Spanish) (#14631)

* revert on a name translation of card made by mistake (#14751)

* Revert "fix typo en/fr (#14749)" (#14750)

This reverts commit 07812a5ac847b29e49a508f743ed7cf7c07df1f4.

* docs-fr | concepts | services-networking | ingress (#13742)

* [docs-fr] init ingress.md

* [docs-fr] remove glossary

* [docs-fr] add definitions

* [docs-fr] add ingress spec

* add default backend and ingress types

* fix netlify error for the unfound yaml file

* [docs-fr] add TLS and loadbalancing

* [docs-fr] fix some french typos

* [docs-fr] replace 'équilibreur de charge' with 'load-balancer'

* [docs-fr] fix typo

* [docs-fr] fix french typos and syntax

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* [docs-fr] enhance syntax

* [docs-fr] update load-balancer spec

* [docs-fr] fix broken deployment

* [docs-fr] fix typos

* fix typo and wrong url (#14772)

* Fix typo, missing 's' for plural (#14783)

* Update bootstrap js because bootstrap 3.3.7 is vulnerable (#14775)

https://snyk.io/vuln/npm:bootstrap?lh=3.3.7&utm_source=lighthouse&utm_medium=ref&utm_campaign=audit

* small typo: extra verb (#14765)

* correct typo in home directory name (#14659)

home directory given as /etc/kuberentes/pki
should be /etc/kubernetes/pki

* Use Hugo extended for Sass/CSS (#13113)

* Correction: sysctl entries aren't annotations (#14796)

* Correction: sysctl entries aren't annotations 

First, thank you for your work on this documentation. It means so much to so many users. I found that the sysctl documentation linked here explains that sysctl pod security policy entries are in the spec field, not done via annotation. This corrects it, using as much of the original language as possible from the linked sysctl documentation.

* Update pod-security-policy.md

* Fixes PDB rounding docs (percentage as string instead of float) (#14788)

* Clarifies how to set `minAvailable` using a percentage

* Fixes other references to percentages

* improve arch/nodes.md info on Conditions and Allocatable (#14753)

* clarify Conditions section in arch/nodes.md

The field name is `conditions` (plural), so have the section name match
the field name. In addition, updates the JSON output of an individual
Condition to match all the fields returned in k8s 1.14+.

* add information about Allocatable to nodes.md

Since k8s 1.6, a Node object returns information about both the node's
capacity as well as the allocatable resources on the node. The latter is
a representation of the resources that are available for normal pods to
consume.

This patch adds information about capacity vs. allocatable to the
documentation about nodes and provides a link to where the reader can
find more information about reserving compute resources.

* Add missing logrotate component to logging with streaming sidecar image (#14780)

* recommended admission controllers are enabled by default (#14784)

Since the recommended ones are already enabled by default, they do not need to be explicitly specified with `--enable-admission-plugins`

* add link to default admission controllers (#14808)

* Add CSI type pv and description of CSI accessMode (#14798)

* Federation Remediation Part Deux  (#14140)

* first removal of federation

* more fixes

* Update service.md (#14804)

Removed one 'means' from incorrect repeat.

* fix padding for docs home on nav (#14807)

updated padding for docs home on nav
testing new sass->css, hugo extended

* Fixes the IP addresses shown in the ip-masq diagram. (#14789)

The diagram can now be edited in draw.io

Issue #13917

* Update install-minikube.md (#14776)

Add message displayed when Hyper-V is already installed.

* Updated podpreset.md to reflect changes in #71479 (#14764)

* Updated podpreset.md to reflect changes in #71479

See https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#other-notable-changes-3

* Refactored explanation to facilitate localization.

* Remove Port Proxy reference (#14769)

The repository is no longer maintained and deprecated

* add clux/kube-rs client (#14759)

* add clux/kube-rs client

add [clux/kube-rs](https://github.com/clux/kube-rs) to list of
[community-maintained client
libraries](https://kubernetes.io/docs/reference/using-api/client-libraries/#community-maintained-client-libraries)

* reorder

* Update control-plane-flags.md (#14729)

* add related note with pod deleted  (#14709)

* feat: add job application has some error and restartPolicy is not Nerver pod will be delete note

* feat: optimize delete pods related suggestion

* Update jobs-run-to-completion.md

* Update persistent-volumes.md (#14811)

Update PersistentVolume description.

* Add recommendation to use kms provider (#13264)

* Add recommendation to use kms provider

Add a warning to encrypting secrets documentation that if using a provider with secrets encryption, kms provider is preferred as it materially changes the threat model.

* Update encrypt-data.md

* Update encrypt-data.md

Updated to include kms provider is Beta sice 1.12

* Update encrypt-data.md

* Add comment about where to run probe (#13815)

* Add comment about where to run probe

Add comment about where to run probe

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* fix grammar nits

Signed-off-by: Xiang Dai <764524258@qq.com>

* updated recommend key path for multiple certificates . (#13895)

this is fix for issue #13892 " In certificate-path table, values of recommend key path for certificates are missing."

* update kubectl "$" format (#13256)

* Downloadable examples for “Run applications” section (#14147)

* Move examples ahead of commands that use them

In support of https://github.com/kubernetes/website/issues/12740

The aim is to adopt a consistent style around providing downloadable
examples for use with kubectl, etc.

* Tweak wording for stateful app pod example

* Adopt formatting conventions for code blocks

* Move ReplicationController sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Move PodDisruptionBudget sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Update test schema for new examples

* Use Unicode ellipsis in example

Aim here is to make the elision more obvious

* Split minikube install task into tabs (per-OS) (#14013)

* Put minikube install steps in per-OS tabs

* Work around nested <li> formatting issue

Using Markdown unordered lists inside tabs doesn't seem to work. These
changes are my work-around for that.

* Reword "laptop" to personal computer

Some computers aren't laptops

* Drop trailing whitespace

* Drop warning about removing other Mac hypervisors

* Add Ref to shared process namespaces (#14194)

* Add Ref to shared process namespaces

The article talking about ways container can talk to each other should include shared process namespace as a method

* Drop note on kube version in reference

* Check all commits in branch for examples (to trigger testing) (#14243)

* Check for examples changes in all branch commits

Review all the commits in the branch looking for changes inside
content/*/examples and if any are found, trigger testing.

This assumes that the main line branch is named "master"

* Tidy examples testing wrapper

 - print diagnostics to standard error
 - check for a "Yes" value rather than for absence of "No"

* Fix several potential issues with existing translation (#14785)

* some typos
* some weird formulations, copied from the original english sentence
* some missing translations

* Add accessibility guidelines to the style guide (#14292)

* [WIP] added accessibility guidelines to the style guide

Adopted the accessibility level A and AA guidelines to Markdown elements: 
https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&currentsidebar=%23col_overview&levels=aaa

We still need to define attributes for the front matter. See, https://github.com/kubernetes/website/issues/14286

I am yet to draft the guidelines for images and alt text.

* fixed the note

Update style-guide.md

Incorporated the changes suggested

Incorporated the changes suggested.

fixed the formatting  issues in the table

fixed the spaces in the links section

fixed a space issue

fixed format issues in the link

added a11y guidelines to code section

removed a spacing issue

front matter guidelines best fit the using template section

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

incorporated the changes

incorporated the changes

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

title section for front matter guideline

updated the html characters

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update style-guide.md

* Improve concept page for Ingress (#14313)

* Highlight feature state for Ingress concept

* Fix command output marked as shell script

* Write "load balancer" as two words

* Clarify prerequisites for Ingress

* Tidy & reword

* Add link to Ingress Controllers topic

(further reading)

* Use a glossary tooltip for Secret

(readers may not have encountered that concept yet)

* Update term definitions in Ingress concept

- Adopt wording from glossary
  (NB: glossary_definition shortcode didn't seem suitable)
- Replace terms with glossary_tooltip where appropriate

* Add all the _index files for the French translation (#14744)

* initial french translation (#14793)

* Restructure the left navigation pane of setup (#14826)

* restructure left nav

* Restructure setup left navigation

* Update _redirects

* Incorporated all the changes suggested

* removed the Thumbs.db file

* Update _index.md for Spanish (#14645)

* Update _index.md

* Update _index.md

* Add content/es/docs/reference/glossary/kubeadm.md (#14546)

* Add content/es/docs/reference/glossary/kubeadm.md

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/docker.md (#14553)

* Add content/es/docs/reference/glossary/docker.md

* Update content/es/docs/reference/glossary/docker.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Translate content/id/docs/concepts/cluster-administration/cluster-administration-overview.md into Portuguese (#14705)

* Added - Cluster Administration Overview as ptBR

* Fixed missing translation

* Fixed style

* rollback reviewers

* Add a script to check differences between translated and English version (#14731)

This script will query all the changes that happen to a reference document (in English) since the last time a given translation was merged (For instance in French).
This could help all the translation team to keep up with the changes that happened inside the reference document.

* fix a mistake in limit-range.md (#14836)

* Update field-selectors.md (#14839)

We should use --all-namespaces to filter all the service

* fix-zh-home (#14835)

* Update install-kubectl.md (#14840)

Add note: Docker for Windows adds its own kubectl to PATH

* 2 translated interactive tutorials for ES (#14417)

Signed-off-by: Ben Hall <ben@benhall.me.uk>

* Added blog post about the upcoming Contributor Summit Shanghai. (#14782)

* Added blog post about the upcoming Contributor Summit Shanghai.

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out CLA

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out KEP

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

define f2f

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

comma

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

add meeting

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

localized/internationalized

Co-Authored-By: chenrui <rui@meetup.com>

* Update and rename 2019-06-11-contributor-summit-shanghai.md to 2019-06-12-contributor-summit-shanghai.md

* Update out-of-resource.md (#14862)

add default value for housekeeping interval

* update pick-right-solution to setup page  (#14866)

* update pick-right-solution to setup page Fixes-14476

* update pick-right-solution to setup page #14866

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md (#14837)

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md

* s/贡献者峰会活动/贡献者峰会/

* s/不过/不论/

* Adopt PR suggestion

* s/你/您/

* s/当前贡献者节/现有贡献者活动/

* s/在亚洲和大洋洲的很多贡献者/很多亚洲和大洋洲的贡献者/

* s/新开发者/新贡献者/

* Adopt PR suggestion.

* s/上海会展中心/上海世博中心/

* s/工作者/贡献者/

* Refresh original English text as the related PR got merged

* Rename the filename to be consistent with English blog post PR

* remove useless file: whatisk8s.md (#14844)

* fix some typos in kubeadm init (#14864)

* Translate "Garbage Collection" page to Bahasa Indonesia (#14513)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* add Garbage Collection page in Bahasa Indonesia and minor fix on Pod Preset page

* remove replication.yaml

* add controllers/replicaset.yaml to example

* fix formatting error

* change dependent to dependen and fix note translation

* delete trailing space in heading

* Dangling "pick-right-solution" references - Italian  (#14806)

* Fixes-14477

* update pick-right-solution to setup page Fixes-14476

* update sentences and fix typo lang/it Fixes-14477

* Revert "update pick-right-solution to setup page Fixes-14476"

This reverts commit e949a7f3d4bc65fa91339d8d4b826e499e552455.

revert wrong commit

* Update _index.md (#14685)

* Fixed typo (#14845)

* Add content/es/docs/reference/glossary/kops.md (#14533)

* [docs-fr] add missing overview (#14815)

* translated term: container-runtime (#14921)

* Fifth Korean localization work for release-1.14 (#14578) (#14874)

Change List
* ko: add tutorials/clusters/apparmor #12455 (#14613)
* ko: add tasks/access-application-cluster/configure-dns-cluster (#14628)
* ko: add tasks/access-application-cluster/communicate-containers-same-… (#14627)
* ko: Update outdated files of setup and tasks in dev-1.14-ko.5 partly (#14683)
* translate to content/ko/docs/concepts/cluster-administration/cluster-… (#14237)
* Update renamed or deleted files in dev-1.14-ko.5 (#14710)
* Create pod.md (#13927)

Co-Authored-By:    Yoon <learder@gmail.com>
Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Claudia J. Kang <claudiajkang@gmail.com>

* fixing carousel Fixes ##14882 (#14895)

* translated term: container (#14909)

* translated glossary/aggregation-layer.md from en to fr (#14911)

* Tidy reference doc generation guide (#14825)

- fix YAML marked as shell
- trim trailing whitespace

* Tidy garbage collection controller page (#14856)

* Tidy code blocks

* Reword for better readability

* add CERN case study (#14873)

* adding Barnie's write permissions to k/website (#14948)

A tad late in the release cycle for this, should have been done sooner to streamline the docs release team.
zacharysarah pushed a commit that referenced this pull request Jun 17, 2019
Updates and corrects the part of configmap for CoreDNS

Readded the link to Instana and Sysdig, which seem to have gone missing due to a merge error or anything like that during preparationg of the 1.14 release. (#14184)

original pull request: https://github.com/kubernetes/website/pull/12977

Signed-off-by: noctarius <me@noctarius.com>

Updated self-hosting documentation (#13866)

* updated self-hosting documentation

* removed more referances

* updated wording

* updated self-hosting warning to be more clear about the effects of pivot has on your cluster

* Update content/en/docs/setup/independent/self-hosting.md

Co-Authored-By: Klaven <mcounts@suse.com>

Watch bookmarks documentation (#14379)

Add docs for volume cloning (#14591)

Add support for quotas for ephemeral storage monitoring. (#14268)

Add documentation for PVC in use protection (#14700)

This PR adds doc to describe PVC in use protection
for PVC actively in use as a snapshot source.

Add a placeholder doc (#14643)

* Add a placeholder doc

* Update persistent-volumes.md

Update CSI migration docs with Azure Disk/File details (#14707)

Signed-off-by: Deep Debroy <ddebroy@docker.com>

kubeadm-1.15-certs-renewal (#14716)

move podresources endpoint to beta (#14622)

Add webhook admission outline (#14671)

Add custom resource quota example (#14492)

kubeadm: Document new v1beta2 config format (#14607)

Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>

CSI Inline Ephemeral Documentation Update (#14704)

* CSI inline ephemeral ver update in doc

* CSI inline ephemeral feature-gate update

Docs for feature: PDB support for custom resource with scale subresource (#14519)

VolumeSubpathEnvExpansion Beta Documentation (#13846)

kubeadm-setup: update all setup related documents for 1.15 (#14594)

promote AWS-NLB Support from alpha to beta (#14451)

Added explanation of alpha non-preempting PriorityClasses to the "Pod Priority and Preemption" doc. (#14599)

Add a section for service load balancer cleanup

Add a user document for the scheduling framework (#14388)

Graduate node PIDS limiting to beta (#14425)

Drop .travis.yml from dev-1.15 branch (#14812)

kubeadm: update the reference documentation for 1.15 (#14596)

* kubeadm-ref: update placeholder generated files

* kubeadm-ref: include reset-phase.md document

Also update reset.md to reflect the addition of reset phases.

* kubeadm-ref: update authored content

* kubeadm-ref: remove imports for removed "config upload" commands

* kubeadm-ref: add page for kubeadm upgrade phases

Update HPA Algorithm Docs for v1.15 (#14728)

Also changes a link to algorithm details from initial design proposal in Github.

concepts/extend-kubernetes/api-extension: add 1.15 features (#14583)

kubeadm-tasks: include v1.14->v1.15 upgrade document (#14595)

Remove v1.11 upgrade documents.

Document webhook and kube-aggerator port configuration (#14674)

Create nodelocaldns.md to describe NodeLocal DNSCache feature. (#14625)

* Create nodelocaldns.md

This contains info about NodeLocal DnsCache feature.

* Update nodelocaldns.md

* Address review comments

Removing merge conflicts for branch dev1.15  (#14940)

* Fix typo (#14299)

* Correct publish date for blog post (#14302)

* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file.
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting

Corrected formatting

* Correcting number sequence

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* improve translation

* cleanup component install to use new catalog feature (#14063)

* cleanup component install to use new catalog feature

sequence of operations

cleanup component install to use new catalog feature

* Update krib.md

* Fix dangling "pick-right-solution" references - English (#14468)

* Fix dangling references

* Redirect to setup

* english update only

* english update only

* Update last file

* word fix

* Add blog post about Kyma from CNCF landscape (#14266)

* Create 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Create test.md

* Add files via upload

* Delete test.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update content/en/blog/_posts/2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

Co-Authored-By: derberg <derberg@wp.pl>

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Add files via upload

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-23-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Fix typo "feedbacks" (#14505)

Feedback is uncountable, just a nitpick ;-)

* update link to front matter description (#14493)

Update the front matter link from jekyll to gohugo.

* Fix dead links related to Kubernetes object management (#14481)

* Translate Disruptions docs to Indonesian (#14395)

* Translate Disruptions docs to Indonesian

* Several changes regarding reviews:
- Use underscore for italic
- Italicize "cloud"
- Consistency of Disrupsi and Gangguan -> Use Disrupsi instead
- Change "usir" to italicized "evict"
- Change "pengontrol" to "pengendali"
- Change "kuras" to "drain"
- Emphasize first mention of disrupsi with bold instead
- Some typo and standard words fixes
- Fixes a potentially fatal translation of "hosting provider"
  - From "penyedia layanan cloud" to "penyedia layanan Kubernetes

* Initialize Taints and Tolerations in Bahasa Indonesia. (#14405)

* Initialize Taints and Tolerations in Bahasa Indonesia.

* Fix typos

* Choisir la bonne solution link updated! (#14483)

* Choisir la bonne solution link updated!

Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Choisir la bonne solution link updated!

Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Remove some spaces

* Update kubecon buttons on homepage (#14521)

* Update kubecon buttons on homepage

* Update _index.html

* Update cluster-administration-overview.md (#14510)

* Update cluster-administration-overview.md

according to #14442 and related with #14480

* Update cluster-administration-overview.md

* Update overview.md (#14424)

* Update overview.md

Fixed broken links for the Linuxacademy courses

* Update overview.md

* Add content/es/docs/reference/glossary/job.md (#14359)

* Agregado el termino Job al glosario

* Traducida la página de Job

* Update content/es/docs/reference/glossary/job.md

accepted reviewer changes

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/rkt.md (#14365)

* es/docs/references/glossary: Add rkt term

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add translations for Imperative Command for Bahasa Indonesia (#14064)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-command.md for Bahasa Indonesia

* Update translations for Imperative Command for Bahasa Indonesia

* Update URL in k8s.io/docs/tasks/federation/administer-federation/cluster/ (#14463)

* Add /content/fr/docs/reference/_index.md (#14528)

* Add /content/fr/docs/reference/_index.md

* translate title and title Link

* take out the approvers section

* replace design by conception

* Update content/fr/docs/reference/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update install-minikube.md (#14542)

The link https://github.com/kubernetes/minikube#other-ways-to-install doesn't exist anymore.
So either we remove the link to it or we fix the minikube README and add a new section for alternative ways to install minikube.
What do you think?

* Tidy & reword “Configure a Pod to Use a Projected Volume for Storage” (#14539)

* Reference glossary entry for Secret

* Fix code block format code

* Tidying & rewording

* Fix HTML typo (#14527)

* Add content/fr/docs/tutorials/_index.md (#14529)

* Add `content/fr/docs/tutorials/_index.md

* The navigation menu was broken without it.
* Translation from `content/en/docs/tutorials/_index.md`

* Update content/fr/docs/tutorials/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* fix kubernetes certified logo url (#14511)

Signed-off-by: harshvkarn <harshvardhan.karn@mayadata.io>

* Add more language specific slack channels (#14506)

* Add more country/language specific slack channels

* Fix Finnish slack channel

Co-Authored-By: Markus Maga <markus@maga.se>

* Add spanish translation for node (#14360)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add container-environment-varibales concepts page (#14378)

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

Add raelga as reviewer

Co-Authored-By: Rael Garcia <me@rael.io>

Remove typo

Co-Authored-By: Rael Garcia <me@rael.io>

Add context to the link

Co-Authored-By: Rael Garcia <me@rael.io>

Change the word to more international one

Co-Authored-By: Rael Garcia <me@rael.io>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/cluster.md (#14472)

Co-Authored-By: Rael Garcia <me@rael.io>

* Fourth Korean localization work for release-1.14 (#14578)

This commit is the fourth Korean l10n work for release-1.14.

Change List

* Translate concepts/overview/object-management-kubectl/declarative-config in Korean (#14285)

* translate cron-jobs.md to korean + add _index.md (#14024)

* ko: update outdated files in dev-1.14-ko.4 #14207 (#14347)

* Translate standardized glossary Tag Workload in Korean (#14208)

* translate to content/ko/docs/concepts/cluster-administration/controll… (#14234)

* ko: update concepts, contribute, tasks in dev-1.14-ko.4 #14207 (#14502)

* ko: update cheatsheet in dev-1.14-ko.4  (#14515)

Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Kim Young Dae <38598117+zer0big@users.noreply.github.com>
Co-Authored-by:    Claudia J. Kang <claudiajkang@gmail.com>
Co-authored-by:    Yoon <learder@gmail.com>
Co-authored-by:    June Yi <june.yi@samsung.com>
Co-authored-by:    Seokho <shsongist@gmail.com>

* Updating blog OWNERS (#14338)

* Fix  content/es/docs/setup/_index.md (#14491)

Dangling "pick-right-solution" references kubernetes#14474
es docs redirection  404 fixed

* Add annotation page (#14358)

* Add content/es/docs/reference/glossary/sysctl.md (#14390)

Signed-off-by: Jose Luis Perez Diez <jluis@escomposlinux.org>

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>
Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* fix link to aws.go (#14550)

* fix link to aws.go

* fix link to aws.go

* Use shortcode for note in Kops glossary entry (#14534)

* Use note shortcode in kops glossary entry

This brings the entry closer to Kubernetes' style guide for
documentation.

* Reword kops glossary entry

- Write “Terraform” with a capital T (it's a proper noun)
- Adjust grammar

* Delete resources created during this task (#14536)

* [WIP] Clean up and reorganize minikube.md (#14255)

The current content was not following the style guide and lacked information on what the user was doing under the quick start section. Added more information and tested the section out. Further reorganized the content.

Correct typos

Updated the content.

Updated the content

Fixed syntax error.

Update the unordered list formatting

Fix formatting issues

Formatting update

Format the content

Format the content

Format content

Format ordered content

Format unordered list

Clean up and reorganize minikube.md

Updated the content

Updated the content as per the comments received.

Fixed an error

Fixes the note shortcode

Fixes error in shortcode

Clean up and reorganize minikube.md

* docs-fr | tutorials | create-cluster (#14584)

* init pages tuto FR create-cluster

* typo

* update

* update index

* Update kubecon buttons on homepage fr (#14587)

update

* Fix OpenAPI deprecated endpoints in Kubernetes 1.14 (#14608)

* Reword glossary entry for etcd (#14621)

* Link to official etcd documentation

* Reword etcd glossary entry

* Update etcd.md

* Update code of conduct based on upstream changes (#14612)

Level with upstream commit 214585e24aab747fb85c2ea44fbf4a2442e30de6

* Use `runtime/default` for seccomp. (#14616)

* Corrected documentation for kubectl tab completion on Mac (#14617)

* Corrects procedure to get tab completion on Mac

Tab completion only requires the installation of bash-completion and sourcing the bash_completion script.

Installing bash-completion@2 doesn't work and source <(kubectl completion bash) is no longer necessary in the .bash_profile.

* Removed reference to other methods that don't work

* Update install-kubectl.md

* Fix reference to features state to beta (#14618)

* Fix reference to features state to beta

* Update device-plugins.md

* Update the pull Request template wording (#14619)

* [WIP]Fix typo

Fix typo

* Update PULL_REQUEST_TEMPLATE.md

* Update config option for openstack block storage (#14603)

* update config option for openstack block storage

* Update cloud-providers.md

* Remove initializers feature gate (#14602)

* Remove initializers feature gate

Initializers are removed in 1.14
kubernetes/kubernetes#72972

* Update feature-gates.md

* fix link to Storage Classes doc (#14551)

* correct the Feature:PodPriority in feature-gates.md (#14547)

* Remove initializers (ja) (#14626)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Update content/es/_index.html with new links (#14589)

* Update content/es/_index.html with new links

* Update _index.html

* Add content/es/docs/reference/glossary/service.md (#14361)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-developer.md (#14372)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/image.md (#14364)

* Add content/es/docs/reference/glossary/image.md

* Update content/es/docs/reference/glossary/image.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-architect.md (#14373)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/secret.md (#14356)

* Add content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Add translations for Imperative Config for Bahasa Indonesia (#14530)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-config.md for Bahasa Indonesia

* Update missing translations in imperative-config.md for Bahasa Indonesia

* Add  content/es/docs/reference/glossary/pod.md (#14368)

* Add  content/es/docs/reference/glossary/pod.md

Apply suggestions from code review

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/pod.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

* Fix typo (#14592)

* Cloud Native Security Intro (#14495)

* initial aggregation of security recommendations

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Jim Angel <jimangel@users.noreply.github.com>

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* address concerns in PR comments

* Document rounding behavior for PDBs (#14408)

* Document rounding behavior for PDBs

* Update content/en/docs/tasks/run-application/configure-pdb.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update configure-pdb.md

* content/es/docs/reference/glossary/selector (#14369)

* Add relevant glossary tooltips (#14632)

Guide reader to learn more about StatefulSet.

* Remove initializers (id) (#14655)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Remove initializers (zh) (#14654)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Fix Typo in the deprecation warning (#13488)

* Update minikube.md (#14662)

Fix linking in same document for preventing 404 errors because the url parts get duplicated now.
e.g: https://kubernetes.io/docs/setup/minikube/docs/setup/minikube/#interacting-with-your-cluster
fix would be: https://kubernetes.io/docs/setup/minikube/#interacting-with-your-cluster

* fix typo in install-kubeadm.md (#14680)

* New upstream commit for code of conduct (Portuguese) (#14630)

* Fix Container Environment Variables full link (#14663)

* fix typo in romana-network-policy.md (#14661)

* fix typos in configure-aggregation-layer.md (#14650)

* Link to 'Add image pull secret to service account' (#14669)

* Link to 'Add image pull secret to service account'

This page does not mention the fact that image pull secrets can be specified through a service account. So adding link to the section which gives details about 'adding image pull secret to service account'.

* Correcting link url

Correcting link url

* change to documentation ip adress #14664 (#14677)

* update feature-gates.md (#14635)

* Add german slack channel and maintainer (#14489)

* Add german slack channel and maintainer

* Update German Maintainer

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

* Updates kubernetes-basics (#14702)

Minor updates:
- Add a full stop.
- Removed the 'Start the tutorial›' section. The sections are already linked from 1 to 6 and this section doe not add any value after point 6.

* Updated target environments supported by Kublr (#14698)

* updating ICP version 3.1.2 to 3.2.0 (#14697)

* clean up feature state examples, style guide (#14699)

* small grammar fixes in overview/components.md (#14693)

Trival patch to fix a couple grammatical mistakes I found while going
through overview/components.md.

* Update secret.md (#14690)

fix (#解码-secret)

* document version changes of critical pod (#14684)

* document version changes of critical pod

* document system priority class name version requirement

* Update guaranteed-scheduling-critical-addon-pods.md

* Adapt docs for kubectl completion on macOS (#14636)

* Clarify behavior of parallel pod management policy (#14606)

* Fix typo: Update to hello-minikube (#14706)

* corrected example for private image string format (#14283)

without specifying registry details for `image` value, You will get following error if you are using a private registry even when your private images are hosted in docker.hub and you have valid credentials configured for the same.

Failed to pull image "xxx/xxx-app:0.0.1": rpc error: code = Unknown desc = Error response from daemon: pull access denied for xxx/xxx-app, repository does not exist or may require 'docker login'

* Tweak glossary definition for Node (#14317)

* Tweak glossary definition for Node

The services (eg kubelet) that run on a Node are not the kind of
Service that the Kubernetes API knows about. Reword accordingly.

Also, highlight that Docker is one container runtime and that
there are others.

* Adopt suggestions from https://github.com/kubernetes/website/pull/14523

Co-Authored-By: Rael Garcia <me@rael.io>

* unhold the binaries on the worker nodes during upgrade (#14708)

* Improve Pivotal row in Production Setup table (#14648)

* Improve Pivotal row in Production Setup table.

- Provider column should contain company name
- Change check marks to product links to match other rows

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Spell out PKS abbreviation.

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Prefer "minikube delete" over "rm -rf ~/.minikube" (#14647)

Using `rm -Rf ~/.minikube` is not necessary in modern (v1.x) versions of minikube, and is highly discouraged as may can leave dangling VM's running, which minikube will fail to recover from.

Example issue: https://github.com/kubernetes/minikube/issues/4377

* Reword documentation for Service concept (#14526)

* Reword glossary entry for Service

New wording should be more suitable for inclusion via a
glossary_definition shortcode.

* Improve What's Next section for Service concept

* Rename Services concept to singular

This matches other concept documentation, eg Deployment.

* Use documentation IP address range

1.2.3.4 is outside the blocks reserved for documentation.

* Reword Service concept description

Services direct traffic to Pods, not containers

* Write IPVS in uppercase

* Link from Security concept to related pages (#14726)

* Remove unneeded "groups" from CSR yaml example (#14723)

* fix homepage redirect of localized documentations (#14586)

* Add case studies from cncf.io (#14520)

* Add case studies from cncf.io

* Delete index.html

* Update index.html

* Update index.html

* Update index.html

* Update index.html

* remove Financial Times

* update links

* fix typo en/fr (#14749)

* changed example domain to be **example.com** (#14740)

**your.private.registry.example.com** is a better choice of domain name for a non-existing sample domain name than calling it **yourprivateregistry.com**

refer #14283

* Fix a small typo (#14743)

* Update images.md (#14736)

* Update images.md

* Update content/en/docs/concepts/containers/images.md

That works fine and thank you.

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Add KubeOne as AWS turnkey solution (#14737)

* Fix typo in limit-range.md. (#14730)

* use glossary defs in overview/components.md (#14721)

This patch promotes re-use of the existing kube-proxy glossary
definition by referencing it from overview/components.md. Similarly, we
move the definition of Container Runtime into a new glossary definition
so that other pages may refer to it.

* Kubespray supports Custom VM and BareMetal (#14717)

Kubespray supports Custom (On-premises VMs) & Custom (Bare Metal).

https://kubespray.io states:

> Can be deployed on AWS, GCE, Azure, OpenStack, vSphere, Packet (bare metal), Oracle Cloud Infrastructure (Experimental), or Baremetal

* fix markdown format (#14756)

![screenshot](https://silenceshell-1255345740.cos.ap-shanghai.myqcloud.com/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-06-06%20%E4%B8%8A%E5%8D%8811.08.13.png)

* Update guestbook-logs-metrics-with-elk.md (#14755)

* Issue #14703 - Update Images.md (#14757)

* update pod-overview.md (#14758)

replaced the changed required in #14746

* Translate docs/tasks/configure-pod-container/attach-handler-lifecycle-event in Chinese (#14605)

* Add zh/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
Add zh/examples/pods/lifecycle-events.yaml

Translate zh/includes/task-tutorial-prereqs.md to chinese

* Apply suggestions from code review

Thanks for tengqm's review

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Apply suggestions from code review

Thanks for tengqm's help again

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Modify the order of text in markdown format

* Unified translation into 处理函数

* Update “Autoscale the DNS Service in a Cluster” (#14525)

* Mark code blocks for syntax highlighting

* Use glossary tooltips where appropriate

* Reword DNS horizontal autoscaling task

- Mention that addons manager is deprecated
- Use unordered list for “What's next”

* Note AMD64 instruction set assumption

* Update to more recent cluster-proportional-autoscaler

Based on sample configuration in https://raw.githubusercontent.com/kubernetes/kubernetes/beba9921aa1a73431bf322ffa17df6b2aa314b0c/cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

* Explain motivation for RuntimeClass (#14490)

* Update Calico to v3.7 (#14501)

* Update link and standardize language (#14482)

* Emphasize that cluster API v1 is deprecated (#14461)

* Rs rollingupdate (#14462)

* Redirect to Deployment docs

* Redirect to Deployment docs

* change using to use

* typo

* fix extra file

* line wrap Deployment

* Adding annotation example (#14440)

* Adding annotation example

Adding example to show how annotation looks like in manifest.  This will help users to understand where exactly we can use the annotations whose details are already given on this page. Annotation `imageregistry: https://hub.docker.com/`  used intentionally to make it more relevant as earlier section talk about registry address  annotation.

* Resolving review comments

Resolving review comments

* setup/independent: fix cilium installation guide for kubeadm (#14411)

Signed-off-by: André Martins <aanm90@gmail.com>

* Adding example to show labels in POD yaml (#14439)

* Adding example to show labels in POD yaml

This page talk about labels and its usage. Also it talk about syntax for specifying labels. But it does not show how we can have labels in resource manifest. So with this PR i am adding example which shows that how we can have labels in pod manifest.

* Changes to resolve review comments

Changes to resolve review comments

* New upstream commit for code of conduct (Spanish) (#14631)

* revert on a name translation of card made by mistake (#14751)

* Revert "fix typo en/fr (#14749)" (#14750)

This reverts commit 07812a5ac847b29e49a508f743ed7cf7c07df1f4.

* docs-fr | concepts | services-networking | ingress (#13742)

* [docs-fr] init ingress.md

* [docs-fr] remove glossary

* [docs-fr] add definitions

* [docs-fr] add ingress spec

* add default backend and ingress types

* fix netlify error for the unfound yaml file

* [docs-fr] add TLS and loadbalancing

* [docs-fr] fix some french typos

* [docs-fr] replace 'équilibreur de charge' with 'load-balancer'

* [docs-fr] fix typo

* [docs-fr] fix french typos and syntax

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* [docs-fr] enhance syntax

* [docs-fr] update load-balancer spec

* [docs-fr] fix broken deployment

* [docs-fr] fix typos

* fix typo and wrong url (#14772)

* Fix typo, missing 's' for plural (#14783)

* Update bootstrap js because bootstrap 3.3.7 is vulnerable (#14775)

https://snyk.io/vuln/npm:bootstrap?lh=3.3.7&utm_source=lighthouse&utm_medium=ref&utm_campaign=audit

* small typo: extra verb (#14765)

* correct typo in home directory name (#14659)

home directory given as /etc/kuberentes/pki
should be /etc/kubernetes/pki

* Use Hugo extended for Sass/CSS (#13113)

* Correction: sysctl entries aren't annotations (#14796)

* Correction: sysctl entries aren't annotations

First, thank you for your work on this documentation. It means so much to so many users. I found that the sysctl documentation linked here explains that sysctl pod security policy entries are in the spec field, not done via annotation. This corrects it, using as much of the original language as possible from the linked sysctl documentation.

* Update pod-security-policy.md

* Fixes PDB rounding docs (percentage as string instead of float) (#14788)

* Clarifies how to set `minAvailable` using a percentage

* Fixes other references to percentages

* improve arch/nodes.md info on Conditions and Allocatable (#14753)

* clarify Conditions section in arch/nodes.md

The field name is `conditions` (plural), so have the section name match
the field name. In addition, updates the JSON output of an individual
Condition to match all the fields returned in k8s 1.14+.

* add information about Allocatable to nodes.md

Since k8s 1.6, a Node object returns information about both the node's
capacity as well as the allocatable resources on the node. The latter is
a representation of the resources that are available for normal pods to
consume.

This patch adds information about capacity vs. allocatable to the
documentation about nodes and provides a link to where the reader can
find more information about reserving compute resources.

* Add missing logrotate component to logging with streaming sidecar image (#14780)

* recommended admission controllers are enabled by default (#14784)

Since the recommended ones are already enabled by default, they do not need to be explicitly specified with `--enable-admission-plugins`

* add link to default admission controllers (#14808)

* Add CSI type pv and description of CSI accessMode (#14798)

* Federation Remediation Part Deux  (#14140)

* first removal of federation

* more fixes

* Update service.md (#14804)

Removed one 'means' from incorrect repeat.

* fix padding for docs home on nav (#14807)

updated padding for docs home on nav
testing new sass->css, hugo extended

* Fixes the IP addresses shown in the ip-masq diagram. (#14789)

The diagram can now be edited in draw.io

Issue #13917

* Update install-minikube.md (#14776)

Add message displayed when Hyper-V is already installed.

* Updated podpreset.md to reflect changes in #71479 (#14764)

* Updated podpreset.md to reflect changes in #71479

See https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#other-notable-changes-3

* Refactored explanation to facilitate localization.

* Remove Port Proxy reference (#14769)

The repository is no longer maintained and deprecated

* add clux/kube-rs client (#14759)

* add clux/kube-rs client

add [clux/kube-rs](https://github.com/clux/kube-rs) to list of
[community-maintained client
libraries](https://kubernetes.io/docs/reference/using-api/client-libraries/#community-maintained-client-libraries)

* reorder

* Update control-plane-flags.md (#14729)

* add related note with pod deleted  (#14709)

* feat: add job application has some error and restartPolicy is not Nerver pod will be delete note

* feat: optimize delete pods related suggestion

* Update jobs-run-to-completion.md

* Update persistent-volumes.md (#14811)

Update PersistentVolume description.

* Add recommendation to use kms provider (#13264)

* Add recommendation to use kms provider

Add a warning to encrypting secrets documentation that if using a provider with secrets encryption, kms provider is preferred as it materially changes the threat model.

* Update encrypt-data.md

* Update encrypt-data.md

Updated to include kms provider is Beta sice 1.12

* Update encrypt-data.md

* Add comment about where to run probe (#13815)

* Add comment about where to run probe

Add comment about where to run probe

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* fix grammar nits

Signed-off-by: Xiang Dai <764524258@qq.com>

* updated recommend key path for multiple certificates . (#13895)

this is fix for issue #13892 " In certificate-path table, values of recommend key path for certificates are missing."

* update kubectl "$" format (#13256)

* Downloadable examples for “Run applications” section (#14147)

* Move examples ahead of commands that use them

In support of https://github.com/kubernetes/website/issues/12740

The aim is to adopt a consistent style around providing downloadable
examples for use with kubectl, etc.

* Tweak wording for stateful app pod example

* Adopt formatting conventions for code blocks

* Move ReplicationController sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Move PodDisruptionBudget sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Update test schema for new examples

* Use Unicode ellipsis in example

Aim here is to make the elision more obvious

* Split minikube install task into tabs (per-OS) (#14013)

* Put minikube install steps in per-OS tabs

* Work around nested <li> formatting issue

Using Markdown unordered lists inside tabs doesn't seem to work. These
changes are my work-around for that.

* Reword "laptop" to personal computer

Some computers aren't laptops

* Drop trailing whitespace

* Drop warning about removing other Mac hypervisors

* Add Ref to shared process namespaces (#14194)

* Add Ref to shared process namespaces

The article talking about ways container can talk to each other should include shared process namespace as a method

* Drop note on kube version in reference

* Check all commits in branch for examples (to trigger testing) (#14243)

* Check for examples changes in all branch commits

Review all the commits in the branch looking for changes inside
content/*/examples and if any are found, trigger testing.

This assumes that the main line branch is named "master"

* Tidy examples testing wrapper

 - print diagnostics to standard error
 - check for a "Yes" value rather than for absence of "No"

* Fix several potential issues with existing translation (#14785)

* some typos
* some weird formulations, copied from the original english sentence
* some missing translations

* Add accessibility guidelines to the style guide (#14292)

* [WIP] added accessibility guidelines to the style guide

Adopted the accessibility level A and AA guidelines to Markdown elements:
https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&currentsidebar=%23col_overview&levels=aaa

We still need to define attributes for the front matter. See, https://github.com/kubernetes/website/issues/14286

I am yet to draft the guidelines for images and alt text.

* fixed the note

Update style-guide.md

Incorporated the changes suggested

Incorporated the changes suggested.

fixed the formatting  issues in the table

fixed the spaces in the links section

fixed a space issue

fixed format issues in the link

added a11y guidelines to code section

removed a spacing issue

front matter guidelines best fit the using template section

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

incorporated the changes

incorporated the changes

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

title section for front matter guideline

updated the html characters

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update style-guide.md

* Improve concept page for Ingress (#14313)

* Highlight feature state for Ingress concept

* Fix command output marked as shell script

* Write "load balancer" as two words

* Clarify prerequisites for Ingress

* Tidy & reword

* Add link to Ingress Controllers topic

(further reading)

* Use a glossary tooltip for Secret

(readers may not have encountered that concept yet)

* Update term definitions in Ingress concept

- Adopt wording from glossary
  (NB: glossary_definition shortcode didn't seem suitable)
- Replace terms with glossary_tooltip where appropriate

* Add all the _index files for the French translation (#14744)

* initial french translation (#14793)

* Restructure the left navigation pane of setup (#14826)

* restructure left nav

* Restructure setup left navigation

* Update _redirects

* Incorporated all the changes suggested

* removed the Thumbs.db file

* Update _index.md for Spanish (#14645)

* Update _index.md

* Update _index.md

* Add content/es/docs/reference/glossary/kubeadm.md (#14546)

* Add content/es/docs/reference/glossary/kubeadm.md

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/docker.md (#14553)

* Add content/es/docs/reference/glossary/docker.md

* Update content/es/docs/reference/glossary/docker.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Translate content/id/docs/concepts/cluster-administration/cluster-administration-overview.md into Portuguese (#14705)

* Added - Cluster Administration Overview as ptBR

* Fixed missing translation

* Fixed style

* rollback reviewers

* Add a script to check differences between translated and English version (#14731)

This script will query all the changes that happen to a reference document (in English) since the last time a given translation was merged (For instance in French).
This could help all the translation team to keep up with the changes that happened inside the reference document.

* fix a mistake in limit-range.md (#14836)

* Update field-selectors.md (#14839)

We should use --all-namespaces to filter all the service

* fix-zh-home (#14835)

* Update install-kubectl.md (#14840)

Add note: Docker for Windows adds its own kubectl to PATH

* 2 translated interactive tutorials for ES (#14417)

Signed-off-by: Ben Hall <ben@benhall.me.uk>

* Added blog post about the upcoming Contributor Summit Shanghai. (#14782)

* Added blog post about the upcoming Contributor Summit Shanghai.

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out CLA

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out KEP

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

define f2f

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

comma

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

add meeting

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

localized/internationalized

Co-Authored-By: chenrui <rui@meetup.com>

* Update and rename 2019-06-11-contributor-summit-shanghai.md to 2019-06-12-contributor-summit-shanghai.md

* Update out-of-resource.md (#14862)

add default value for housekeeping interval

* update pick-right-solution to setup page  (#14866)

* update pick-right-solution to setup page Fixes-14476

* update pick-right-solution to setup page #14866

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md (#14837)

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md

* s/贡献者峰会活动/贡献者峰会/

* s/不过/不论/

* Adopt PR suggestion

* s/你/您/

* s/当前贡献者节/现有贡献者活动/

* s/在亚洲和大洋洲的很多贡献者/很多亚洲和大洋洲的贡献者/

* s/新开发者/新贡献者/

* Adopt PR suggestion.

* s/上海会展中心/上海世博中心/

* s/工作者/贡献者/

* Refresh original English text as the related PR got merged

* Rename the filename to be consistent with English blog post PR

* remove useless file: whatisk8s.md (#14844)

* fix some typos in kubeadm init (#14864)

* Translate "Garbage Collection" page to Bahasa Indonesia (#14513)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* add Garbage Collection page in Bahasa Indonesia and minor fix on Pod Preset page

* remove replication.yaml

* add controllers/replicaset.yaml to example

* fix formatting error

* change dependent to dependen and fix note translation

* delete trailing space in heading

* Dangling "pick-right-solution" references - Italian  (#14806)

* Fixes-14477

* update pick-right-solution to setup page Fixes-14476

* update sentences and fix typo lang/it Fixes-14477

* Revert "update pick-right-solution to setup page Fixes-14476"

This reverts commit e949a7f3d4bc65fa91339d8d4b826e499e552455.

revert wrong commit

* Update _index.md (#14685)

* Fixed typo (#14845)

* Add content/es/docs/reference/glossary/kops.md (#14533)

* [docs-fr] add missing overview (#14815)

* translated term: container-runtime (#14921)

* Fifth Korean localization work for release-1.14 (#14578) (#14874)

Change List
* ko: add tutorials/clusters/apparmor #12455 (#14613)
* ko: add tasks/access-application-cluster/configure-dns-cluster (#14628)
* ko: add tasks/access-application-cluster/communicate-containers-same-… (#14627)
* ko: Update outdated files of setup and tasks in dev-1.14-ko.5 partly (#14683)
* translate to content/ko/docs/concepts/cluster-administration/cluster-… (#14237)
* Update renamed or deleted files in dev-1.14-ko.5 (#14710)
* Create pod.md (#13927)

Co-Authored-By:    Yoon <learder@gmail.com>
Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Claudia J. Kang <claudiajkang@gmail.com>

* fixing carousel Fixes ##14882 (#14895)

* translated term: container (#14909)

* translated glossary/aggregation-layer.md from en to fr (#14911)

* Tidy reference doc generation guide (#14825)

- fix YAML marked as shell
- trim trailing whitespace

* Tidy garbage collection controller page (#14856)

* Tidy code blocks

* Reword for better readability

Revert "Removing merge conflicts for branch dev1.15  (#14940)"

This reverts commit 3c42770bc4c939cd371caa0f3b9bc229533d3d8f.

Update content from master and resolve conflicts dev-1.15 (#14950)

* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file.
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting

Corrected formatting

* Correcting number sequence

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update …
zacharysarah pushed a commit that referenced this pull request Jun 17, 2019
Updates and corrects the part of configmap for CoreDNS

Readded the link to Instana and Sysdig, which seem to have gone missing due to a merge error or anything like that during preparationg of the 1.14 release. (#14184)

original pull request: https://github.com/kubernetes/website/pull/12977

Signed-off-by: noctarius <me@noctarius.com>

Updated self-hosting documentation (#13866)

* updated self-hosting documentation

* removed more referances

* updated wording

* updated self-hosting warning to be more clear about the effects of pivot has on your cluster

* Update content/en/docs/setup/independent/self-hosting.md

Co-Authored-By: Klaven <mcounts@suse.com>

Watch bookmarks documentation (#14379)

Add docs for volume cloning (#14591)

Add support for quotas for ephemeral storage monitoring. (#14268)

Add documentation for PVC in use protection (#14700)

This PR adds doc to describe PVC in use protection
for PVC actively in use as a snapshot source.

Add a placeholder doc (#14643)

* Add a placeholder doc

* Update persistent-volumes.md

Update CSI migration docs with Azure Disk/File details (#14707)

Signed-off-by: Deep Debroy <ddebroy@docker.com>

kubeadm-1.15-certs-renewal (#14716)

move podresources endpoint to beta (#14622)

Add webhook admission outline (#14671)

Add custom resource quota example (#14492)

kubeadm: Document new v1beta2 config format (#14607)

Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>

CSI Inline Ephemeral Documentation Update (#14704)

* CSI inline ephemeral ver update in doc

* CSI inline ephemeral feature-gate update

Docs for feature: PDB support for custom resource with scale subresource (#14519)

VolumeSubpathEnvExpansion Beta Documentation (#13846)

kubeadm-setup: update all setup related documents for 1.15 (#14594)

promote AWS-NLB Support from alpha to beta (#14451)

Added explanation of alpha non-preempting PriorityClasses to the "Pod Priority and Preemption" doc. (#14599)

Add a section for service load balancer cleanup

Add a user document for the scheduling framework (#14388)

Graduate node PIDS limiting to beta (#14425)

Drop .travis.yml from dev-1.15 branch (#14812)

kubeadm: update the reference documentation for 1.15 (#14596)

* kubeadm-ref: update placeholder generated files

* kubeadm-ref: include reset-phase.md document

Also update reset.md to reflect the addition of reset phases.

* kubeadm-ref: update authored content

* kubeadm-ref: remove imports for removed "config upload" commands

* kubeadm-ref: add page for kubeadm upgrade phases

Update HPA Algorithm Docs for v1.15 (#14728)

Also changes a link to algorithm details from initial design proposal in Github.

concepts/extend-kubernetes/api-extension: add 1.15 features (#14583)

kubeadm-tasks: include v1.14->v1.15 upgrade document (#14595)

Remove v1.11 upgrade documents.

Document webhook and kube-aggerator port configuration (#14674)

Create nodelocaldns.md to describe NodeLocal DNSCache feature. (#14625)

* Create nodelocaldns.md

This contains info about NodeLocal DnsCache feature.

* Update nodelocaldns.md

* Address review comments

Removing merge conflicts for branch dev1.15  (#14940)

* Fix typo (#14299)

* Correct publish date for blog post (#14302)

* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file.
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting

Corrected formatting

* Correcting number sequence

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* improve translation

* cleanup component install to use new catalog feature (#14063)

* cleanup component install to use new catalog feature

sequence of operations

cleanup component install to use new catalog feature

* Update krib.md

* Fix dangling "pick-right-solution" references - English (#14468)

* Fix dangling references

* Redirect to setup

* english update only

* english update only

* Update last file

* word fix

* Add blog post about Kyma from CNCF landscape (#14266)

* Create 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Create test.md

* Add files via upload

* Delete test.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update content/en/blog/_posts/2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

Co-Authored-By: derberg <derberg@wp.pl>

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Add files via upload

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-23-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Fix typo "feedbacks" (#14505)

Feedback is uncountable, just a nitpick ;-)

* update link to front matter description (#14493)

Update the front matter link from jekyll to gohugo.

* Fix dead links related to Kubernetes object management (#14481)

* Translate Disruptions docs to Indonesian (#14395)

* Translate Disruptions docs to Indonesian

* Several changes regarding reviews:
- Use underscore for italic
- Italicize "cloud"
- Consistency of Disrupsi and Gangguan -> Use Disrupsi instead
- Change "usir" to italicized "evict"
- Change "pengontrol" to "pengendali"
- Change "kuras" to "drain"
- Emphasize first mention of disrupsi with bold instead
- Some typo and standard words fixes
- Fixes a potentially fatal translation of "hosting provider"
  - From "penyedia layanan cloud" to "penyedia layanan Kubernetes

* Initialize Taints and Tolerations in Bahasa Indonesia. (#14405)

* Initialize Taints and Tolerations in Bahasa Indonesia.

* Fix typos

* Choisir la bonne solution link updated! (#14483)

* Choisir la bonne solution link updated!

Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Choisir la bonne solution link updated!

Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Remove some spaces

* Update kubecon buttons on homepage (#14521)

* Update kubecon buttons on homepage

* Update _index.html

* Update cluster-administration-overview.md (#14510)

* Update cluster-administration-overview.md

according to #14442 and related with #14480

* Update cluster-administration-overview.md

* Update overview.md (#14424)

* Update overview.md

Fixed broken links for the Linuxacademy courses

* Update overview.md

* Add content/es/docs/reference/glossary/job.md (#14359)

* Agregado el termino Job al glosario

* Traducida la página de Job

* Update content/es/docs/reference/glossary/job.md

accepted reviewer changes

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/rkt.md (#14365)

* es/docs/references/glossary: Add rkt term

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add translations for Imperative Command for Bahasa Indonesia (#14064)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-command.md for Bahasa Indonesia

* Update translations for Imperative Command for Bahasa Indonesia

* Update URL in k8s.io/docs/tasks/federation/administer-federation/cluster/ (#14463)

* Add /content/fr/docs/reference/_index.md (#14528)

* Add /content/fr/docs/reference/_index.md

* translate title and title Link

* take out the approvers section

* replace design by conception

* Update content/fr/docs/reference/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update install-minikube.md (#14542)

The link https://github.com/kubernetes/minikube#other-ways-to-install doesn't exist anymore.
So either we remove the link to it or we fix the minikube README and add a new section for alternative ways to install minikube.
What do you think?

* Tidy & reword “Configure a Pod to Use a Projected Volume for Storage” (#14539)

* Reference glossary entry for Secret

* Fix code block format code

* Tidying & rewording

* Fix HTML typo (#14527)

* Add content/fr/docs/tutorials/_index.md (#14529)

* Add `content/fr/docs/tutorials/_index.md

* The navigation menu was broken without it.
* Translation from `content/en/docs/tutorials/_index.md`

* Update content/fr/docs/tutorials/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* fix kubernetes certified logo url (#14511)

Signed-off-by: harshvkarn <harshvardhan.karn@mayadata.io>

* Add more language specific slack channels (#14506)

* Add more country/language specific slack channels

* Fix Finnish slack channel

Co-Authored-By: Markus Maga <markus@maga.se>

* Add spanish translation for node (#14360)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add container-environment-varibales concepts page (#14378)

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

Add raelga as reviewer

Co-Authored-By: Rael Garcia <me@rael.io>

Remove typo

Co-Authored-By: Rael Garcia <me@rael.io>

Add context to the link

Co-Authored-By: Rael Garcia <me@rael.io>

Change the word to more international one

Co-Authored-By: Rael Garcia <me@rael.io>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/cluster.md (#14472)

Co-Authored-By: Rael Garcia <me@rael.io>

* Fourth Korean localization work for release-1.14 (#14578)

This commit is the fourth Korean l10n work for release-1.14.

Change List

* Translate concepts/overview/object-management-kubectl/declarative-config in Korean (#14285)

* translate cron-jobs.md to korean + add _index.md (#14024)

* ko: update outdated files in dev-1.14-ko.4 #14207 (#14347)

* Translate standardized glossary Tag Workload in Korean (#14208)

* translate to content/ko/docs/concepts/cluster-administration/controll… (#14234)

* ko: update concepts, contribute, tasks in dev-1.14-ko.4 #14207 (#14502)

* ko: update cheatsheet in dev-1.14-ko.4  (#14515)

Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Kim Young Dae <38598117+zer0big@users.noreply.github.com>
Co-Authored-by:    Claudia J. Kang <claudiajkang@gmail.com>
Co-authored-by:    Yoon <learder@gmail.com>
Co-authored-by:    June Yi <june.yi@samsung.com>
Co-authored-by:    Seokho <shsongist@gmail.com>

* Updating blog OWNERS (#14338)

* Fix  content/es/docs/setup/_index.md (#14491)

Dangling "pick-right-solution" references kubernetes#14474
es docs redirection  404 fixed

* Add annotation page (#14358)

* Add content/es/docs/reference/glossary/sysctl.md (#14390)

Signed-off-by: Jose Luis Perez Diez <jluis@escomposlinux.org>

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>
Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* fix link to aws.go (#14550)

* fix link to aws.go

* fix link to aws.go

* Use shortcode for note in Kops glossary entry (#14534)

* Use note shortcode in kops glossary entry

This brings the entry closer to Kubernetes' style guide for
documentation.

* Reword kops glossary entry

- Write “Terraform” with a capital T (it's a proper noun)
- Adjust grammar

* Delete resources created during this task (#14536)

* [WIP] Clean up and reorganize minikube.md (#14255)

The current content was not following the style guide and lacked information on what the user was doing under the quick start section. Added more information and tested the section out. Further reorganized the content.

Correct typos

Updated the content.

Updated the content

Fixed syntax error.

Update the unordered list formatting

Fix formatting issues

Formatting update

Format the content

Format the content

Format content

Format ordered content

Format unordered list

Clean up and reorganize minikube.md

Updated the content

Updated the content as per the comments received.

Fixed an error

Fixes the note shortcode

Fixes error in shortcode

Clean up and reorganize minikube.md

* docs-fr | tutorials | create-cluster (#14584)

* init pages tuto FR create-cluster

* typo

* update

* update index

* Update kubecon buttons on homepage fr (#14587)

update

* Fix OpenAPI deprecated endpoints in Kubernetes 1.14 (#14608)

* Reword glossary entry for etcd (#14621)

* Link to official etcd documentation

* Reword etcd glossary entry

* Update etcd.md

* Update code of conduct based on upstream changes (#14612)

Level with upstream commit 214585e24aab747fb85c2ea44fbf4a2442e30de6

* Use `runtime/default` for seccomp. (#14616)

* Corrected documentation for kubectl tab completion on Mac (#14617)

* Corrects procedure to get tab completion on Mac

Tab completion only requires the installation of bash-completion and sourcing the bash_completion script.

Installing bash-completion@2 doesn't work and source <(kubectl completion bash) is no longer necessary in the .bash_profile.

* Removed reference to other methods that don't work

* Update install-kubectl.md

* Fix reference to features state to beta (#14618)

* Fix reference to features state to beta

* Update device-plugins.md

* Update the pull Request template wording (#14619)

* [WIP]Fix typo

Fix typo

* Update PULL_REQUEST_TEMPLATE.md

* Update config option for openstack block storage (#14603)

* update config option for openstack block storage

* Update cloud-providers.md

* Remove initializers feature gate (#14602)

* Remove initializers feature gate

Initializers are removed in 1.14
kubernetes/kubernetes#72972

* Update feature-gates.md

* fix link to Storage Classes doc (#14551)

* correct the Feature:PodPriority in feature-gates.md (#14547)

* Remove initializers (ja) (#14626)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Update content/es/_index.html with new links (#14589)

* Update content/es/_index.html with new links

* Update _index.html

* Add content/es/docs/reference/glossary/service.md (#14361)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-developer.md (#14372)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/image.md (#14364)

* Add content/es/docs/reference/glossary/image.md

* Update content/es/docs/reference/glossary/image.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-architect.md (#14373)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/secret.md (#14356)

* Add content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Add translations for Imperative Config for Bahasa Indonesia (#14530)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-config.md for Bahasa Indonesia

* Update missing translations in imperative-config.md for Bahasa Indonesia

* Add  content/es/docs/reference/glossary/pod.md (#14368)

* Add  content/es/docs/reference/glossary/pod.md

Apply suggestions from code review

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/pod.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

* Fix typo (#14592)

* Cloud Native Security Intro (#14495)

* initial aggregation of security recommendations

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Jim Angel <jimangel@users.noreply.github.com>

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* address concerns in PR comments

* Document rounding behavior for PDBs (#14408)

* Document rounding behavior for PDBs

* Update content/en/docs/tasks/run-application/configure-pdb.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update configure-pdb.md

* content/es/docs/reference/glossary/selector (#14369)

* Add relevant glossary tooltips (#14632)

Guide reader to learn more about StatefulSet.

* Remove initializers (id) (#14655)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Remove initializers (zh) (#14654)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Fix Typo in the deprecation warning (#13488)

* Update minikube.md (#14662)

Fix linking in same document for preventing 404 errors because the url parts get duplicated now.
e.g: https://kubernetes.io/docs/setup/minikube/docs/setup/minikube/#interacting-with-your-cluster
fix would be: https://kubernetes.io/docs/setup/minikube/#interacting-with-your-cluster

* fix typo in install-kubeadm.md (#14680)

* New upstream commit for code of conduct (Portuguese) (#14630)

* Fix Container Environment Variables full link (#14663)

* fix typo in romana-network-policy.md (#14661)

* fix typos in configure-aggregation-layer.md (#14650)

* Link to 'Add image pull secret to service account' (#14669)

* Link to 'Add image pull secret to service account'

This page does not mention the fact that image pull secrets can be specified through a service account. So adding link to the section which gives details about 'adding image pull secret to service account'.

* Correcting link url

Correcting link url

* change to documentation ip adress #14664 (#14677)

* update feature-gates.md (#14635)

* Add german slack channel and maintainer (#14489)

* Add german slack channel and maintainer

* Update German Maintainer

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

* Updates kubernetes-basics (#14702)

Minor updates:
- Add a full stop.
- Removed the 'Start the tutorial›' section. The sections are already linked from 1 to 6 and this section doe not add any value after point 6.

* Updated target environments supported by Kublr (#14698)

* updating ICP version 3.1.2 to 3.2.0 (#14697)

* clean up feature state examples, style guide (#14699)

* small grammar fixes in overview/components.md (#14693)

Trival patch to fix a couple grammatical mistakes I found while going
through overview/components.md.

* Update secret.md (#14690)

fix (#解码-secret)

* document version changes of critical pod (#14684)

* document version changes of critical pod

* document system priority class name version requirement

* Update guaranteed-scheduling-critical-addon-pods.md

* Adapt docs for kubectl completion on macOS (#14636)

* Clarify behavior of parallel pod management policy (#14606)

* Fix typo: Update to hello-minikube (#14706)

* corrected example for private image string format (#14283)

without specifying registry details for `image` value, You will get following error if you are using a private registry even when your private images are hosted in docker.hub and you have valid credentials configured for the same.

Failed to pull image "xxx/xxx-app:0.0.1": rpc error: code = Unknown desc = Error response from daemon: pull access denied for xxx/xxx-app, repository does not exist or may require 'docker login'

* Tweak glossary definition for Node (#14317)

* Tweak glossary definition for Node

The services (eg kubelet) that run on a Node are not the kind of
Service that the Kubernetes API knows about. Reword accordingly.

Also, highlight that Docker is one container runtime and that
there are others.

* Adopt suggestions from https://github.com/kubernetes/website/pull/14523

Co-Authored-By: Rael Garcia <me@rael.io>

* unhold the binaries on the worker nodes during upgrade (#14708)

* Improve Pivotal row in Production Setup table (#14648)

* Improve Pivotal row in Production Setup table.

- Provider column should contain company name
- Change check marks to product links to match other rows

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Spell out PKS abbreviation.

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Prefer "minikube delete" over "rm -rf ~/.minikube" (#14647)

Using `rm -Rf ~/.minikube` is not necessary in modern (v1.x) versions of minikube, and is highly discouraged as may can leave dangling VM's running, which minikube will fail to recover from.

Example issue: https://github.com/kubernetes/minikube/issues/4377

* Reword documentation for Service concept (#14526)

* Reword glossary entry for Service

New wording should be more suitable for inclusion via a
glossary_definition shortcode.

* Improve What's Next section for Service concept

* Rename Services concept to singular

This matches other concept documentation, eg Deployment.

* Use documentation IP address range

1.2.3.4 is outside the blocks reserved for documentation.

* Reword Service concept description

Services direct traffic to Pods, not containers

* Write IPVS in uppercase

* Link from Security concept to related pages (#14726)

* Remove unneeded "groups" from CSR yaml example (#14723)

* fix homepage redirect of localized documentations (#14586)

* Add case studies from cncf.io (#14520)

* Add case studies from cncf.io

* Delete index.html

* Update index.html

* Update index.html

* Update index.html

* Update index.html

* remove Financial Times

* update links

* fix typo en/fr (#14749)

* changed example domain to be **example.com** (#14740)

**your.private.registry.example.com** is a better choice of domain name for a non-existing sample domain name than calling it **yourprivateregistry.com**

refer #14283

* Fix a small typo (#14743)

* Update images.md (#14736)

* Update images.md

* Update content/en/docs/concepts/containers/images.md

That works fine and thank you.

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Add KubeOne as AWS turnkey solution (#14737)

* Fix typo in limit-range.md. (#14730)

* use glossary defs in overview/components.md (#14721)

This patch promotes re-use of the existing kube-proxy glossary
definition by referencing it from overview/components.md. Similarly, we
move the definition of Container Runtime into a new glossary definition
so that other pages may refer to it.

* Kubespray supports Custom VM and BareMetal (#14717)

Kubespray supports Custom (On-premises VMs) & Custom (Bare Metal).

https://kubespray.io states:

> Can be deployed on AWS, GCE, Azure, OpenStack, vSphere, Packet (bare metal), Oracle Cloud Infrastructure (Experimental), or Baremetal

* fix markdown format (#14756)

![screenshot](https://silenceshell-1255345740.cos.ap-shanghai.myqcloud.com/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-06-06%20%E4%B8%8A%E5%8D%8811.08.13.png)

* Update guestbook-logs-metrics-with-elk.md (#14755)

* Issue #14703 - Update Images.md (#14757)

* update pod-overview.md (#14758)

replaced the changed required in #14746

* Translate docs/tasks/configure-pod-container/attach-handler-lifecycle-event in Chinese (#14605)

* Add zh/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
Add zh/examples/pods/lifecycle-events.yaml

Translate zh/includes/task-tutorial-prereqs.md to chinese

* Apply suggestions from code review

Thanks for tengqm's review

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Apply suggestions from code review

Thanks for tengqm's help again

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Modify the order of text in markdown format

* Unified translation into 处理函数

* Update “Autoscale the DNS Service in a Cluster” (#14525)

* Mark code blocks for syntax highlighting

* Use glossary tooltips where appropriate

* Reword DNS horizontal autoscaling task

- Mention that addons manager is deprecated
- Use unordered list for “What's next”

* Note AMD64 instruction set assumption

* Update to more recent cluster-proportional-autoscaler

Based on sample configuration in https://raw.githubusercontent.com/kubernetes/kubernetes/beba9921aa1a73431bf322ffa17df6b2aa314b0c/cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

* Explain motivation for RuntimeClass (#14490)

* Update Calico to v3.7 (#14501)

* Update link and standardize language (#14482)

* Emphasize that cluster API v1 is deprecated (#14461)

* Rs rollingupdate (#14462)

* Redirect to Deployment docs

* Redirect to Deployment docs

* change using to use

* typo

* fix extra file

* line wrap Deployment

* Adding annotation example (#14440)

* Adding annotation example

Adding example to show how annotation looks like in manifest.  This will help users to understand where exactly we can use the annotations whose details are already given on this page. Annotation `imageregistry: https://hub.docker.com/`  used intentionally to make it more relevant as earlier section talk about registry address  annotation.

* Resolving review comments

Resolving review comments

* setup/independent: fix cilium installation guide for kubeadm (#14411)

Signed-off-by: André Martins <aanm90@gmail.com>

* Adding example to show labels in POD yaml (#14439)

* Adding example to show labels in POD yaml

This page talk about labels and its usage. Also it talk about syntax for specifying labels. But it does not show how we can have labels in resource manifest. So with this PR i am adding example which shows that how we can have labels in pod manifest.

* Changes to resolve review comments

Changes to resolve review comments

* New upstream commit for code of conduct (Spanish) (#14631)

* revert on a name translation of card made by mistake (#14751)

* Revert "fix typo en/fr (#14749)" (#14750)

This reverts commit 07812a5ac847b29e49a508f743ed7cf7c07df1f4.

* docs-fr | concepts | services-networking | ingress (#13742)

* [docs-fr] init ingress.md

* [docs-fr] remove glossary

* [docs-fr] add definitions

* [docs-fr] add ingress spec

* add default backend and ingress types

* fix netlify error for the unfound yaml file

* [docs-fr] add TLS and loadbalancing

* [docs-fr] fix some french typos

* [docs-fr] replace 'équilibreur de charge' with 'load-balancer'

* [docs-fr] fix typo

* [docs-fr] fix french typos and syntax

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* [docs-fr] enhance syntax

* [docs-fr] update load-balancer spec

* [docs-fr] fix broken deployment

* [docs-fr] fix typos

* fix typo and wrong url (#14772)

* Fix typo, missing 's' for plural (#14783)

* Update bootstrap js because bootstrap 3.3.7 is vulnerable (#14775)

https://snyk.io/vuln/npm:bootstrap?lh=3.3.7&utm_source=lighthouse&utm_medium=ref&utm_campaign=audit

* small typo: extra verb (#14765)

* correct typo in home directory name (#14659)

home directory given as /etc/kuberentes/pki
should be /etc/kubernetes/pki

* Use Hugo extended for Sass/CSS (#13113)

* Correction: sysctl entries aren't annotations (#14796)

* Correction: sysctl entries aren't annotations

First, thank you for your work on this documentation. It means so much to so many users. I found that the sysctl documentation linked here explains that sysctl pod security policy entries are in the spec field, not done via annotation. This corrects it, using as much of the original language as possible from the linked sysctl documentation.

* Update pod-security-policy.md

* Fixes PDB rounding docs (percentage as string instead of float) (#14788)

* Clarifies how to set `minAvailable` using a percentage

* Fixes other references to percentages

* improve arch/nodes.md info on Conditions and Allocatable (#14753)

* clarify Conditions section in arch/nodes.md

The field name is `conditions` (plural), so have the section name match
the field name. In addition, updates the JSON output of an individual
Condition to match all the fields returned in k8s 1.14+.

* add information about Allocatable to nodes.md

Since k8s 1.6, a Node object returns information about both the node's
capacity as well as the allocatable resources on the node. The latter is
a representation of the resources that are available for normal pods to
consume.

This patch adds information about capacity vs. allocatable to the
documentation about nodes and provides a link to where the reader can
find more information about reserving compute resources.

* Add missing logrotate component to logging with streaming sidecar image (#14780)

* recommended admission controllers are enabled by default (#14784)

Since the recommended ones are already enabled by default, they do not need to be explicitly specified with `--enable-admission-plugins`

* add link to default admission controllers (#14808)

* Add CSI type pv and description of CSI accessMode (#14798)

* Federation Remediation Part Deux  (#14140)

* first removal of federation

* more fixes

* Update service.md (#14804)

Removed one 'means' from incorrect repeat.

* fix padding for docs home on nav (#14807)

updated padding for docs home on nav
testing new sass->css, hugo extended

* Fixes the IP addresses shown in the ip-masq diagram. (#14789)

The diagram can now be edited in draw.io

Issue #13917

* Update install-minikube.md (#14776)

Add message displayed when Hyper-V is already installed.

* Updated podpreset.md to reflect changes in #71479 (#14764)

* Updated podpreset.md to reflect changes in #71479

See https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#other-notable-changes-3

* Refactored explanation to facilitate localization.

* Remove Port Proxy reference (#14769)

The repository is no longer maintained and deprecated

* add clux/kube-rs client (#14759)

* add clux/kube-rs client

add [clux/kube-rs](https://github.com/clux/kube-rs) to list of
[community-maintained client
libraries](https://kubernetes.io/docs/reference/using-api/client-libraries/#community-maintained-client-libraries)

* reorder

* Update control-plane-flags.md (#14729)

* add related note with pod deleted  (#14709)

* feat: add job application has some error and restartPolicy is not Nerver pod will be delete note

* feat: optimize delete pods related suggestion

* Update jobs-run-to-completion.md

* Update persistent-volumes.md (#14811)

Update PersistentVolume description.

* Add recommendation to use kms provider (#13264)

* Add recommendation to use kms provider

Add a warning to encrypting secrets documentation that if using a provider with secrets encryption, kms provider is preferred as it materially changes the threat model.

* Update encrypt-data.md

* Update encrypt-data.md

Updated to include kms provider is Beta sice 1.12

* Update encrypt-data.md

* Add comment about where to run probe (#13815)

* Add comment about where to run probe

Add comment about where to run probe

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* fix grammar nits

Signed-off-by: Xiang Dai <764524258@qq.com>

* updated recommend key path for multiple certificates . (#13895)

this is fix for issue #13892 " In certificate-path table, values of recommend key path for certificates are missing."

* update kubectl "$" format (#13256)

* Downloadable examples for “Run applications” section (#14147)

* Move examples ahead of commands that use them

In support of https://github.com/kubernetes/website/issues/12740

The aim is to adopt a consistent style around providing downloadable
examples for use with kubectl, etc.

* Tweak wording for stateful app pod example

* Adopt formatting conventions for code blocks

* Move ReplicationController sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Move PodDisruptionBudget sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Update test schema for new examples

* Use Unicode ellipsis in example

Aim here is to make the elision more obvious

* Split minikube install task into tabs (per-OS) (#14013)

* Put minikube install steps in per-OS tabs

* Work around nested <li> formatting issue

Using Markdown unordered lists inside tabs doesn't seem to work. These
changes are my work-around for that.

* Reword "laptop" to personal computer

Some computers aren't laptops

* Drop trailing whitespace

* Drop warning about removing other Mac hypervisors

* Add Ref to shared process namespaces (#14194)

* Add Ref to shared process namespaces

The article talking about ways container can talk to each other should include shared process namespace as a method

* Drop note on kube version in reference

* Check all commits in branch for examples (to trigger testing) (#14243)

* Check for examples changes in all branch commits

Review all the commits in the branch looking for changes inside
content/*/examples and if any are found, trigger testing.

This assumes that the main line branch is named "master"

* Tidy examples testing wrapper

 - print diagnostics to standard error
 - check for a "Yes" value rather than for absence of "No"

* Fix several potential issues with existing translation (#14785)

* some typos
* some weird formulations, copied from the original english sentence
* some missing translations

* Add accessibility guidelines to the style guide (#14292)

* [WIP] added accessibility guidelines to the style guide

Adopted the accessibility level A and AA guidelines to Markdown elements:
https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&currentsidebar=%23col_overview&levels=aaa

We still need to define attributes for the front matter. See, https://github.com/kubernetes/website/issues/14286

I am yet to draft the guidelines for images and alt text.

* fixed the note

Update style-guide.md

Incorporated the changes suggested

Incorporated the changes suggested.

fixed the formatting  issues in the table

fixed the spaces in the links section

fixed a space issue

fixed format issues in the link

added a11y guidelines to code section

removed a spacing issue

front matter guidelines best fit the using template section

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

incorporated the changes

incorporated the changes

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

title section for front matter guideline

updated the html characters

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update style-guide.md

* Improve concept page for Ingress (#14313)

* Highlight feature state for Ingress concept

* Fix command output marked as shell script

* Write "load balancer" as two words

* Clarify prerequisites for Ingress

* Tidy & reword

* Add link to Ingress Controllers topic

(further reading)

* Use a glossary tooltip for Secret

(readers may not have encountered that concept yet)

* Update term definitions in Ingress concept

- Adopt wording from glossary
  (NB: glossary_definition shortcode didn't seem suitable)
- Replace terms with glossary_tooltip where appropriate

* Add all the _index files for the French translation (#14744)

* initial french translation (#14793)

* Restructure the left navigation pane of setup (#14826)

* restructure left nav

* Restructure setup left navigation

* Update _redirects

* Incorporated all the changes suggested

* removed the Thumbs.db file

* Update _index.md for Spanish (#14645)

* Update _index.md

* Update _index.md

* Add content/es/docs/reference/glossary/kubeadm.md (#14546)

* Add content/es/docs/reference/glossary/kubeadm.md

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/docker.md (#14553)

* Add content/es/docs/reference/glossary/docker.md

* Update content/es/docs/reference/glossary/docker.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Translate content/id/docs/concepts/cluster-administration/cluster-administration-overview.md into Portuguese (#14705)

* Added - Cluster Administration Overview as ptBR

* Fixed missing translation

* Fixed style

* rollback reviewers

* Add a script to check differences between translated and English version (#14731)

This script will query all the changes that happen to a reference document (in English) since the last time a given translation was merged (For instance in French).
This could help all the translation team to keep up with the changes that happened inside the reference document.

* fix a mistake in limit-range.md (#14836)

* Update field-selectors.md (#14839)

We should use --all-namespaces to filter all the service

* fix-zh-home (#14835)

* Update install-kubectl.md (#14840)

Add note: Docker for Windows adds its own kubectl to PATH

* 2 translated interactive tutorials for ES (#14417)

Signed-off-by: Ben Hall <ben@benhall.me.uk>

* Added blog post about the upcoming Contributor Summit Shanghai. (#14782)

* Added blog post about the upcoming Contributor Summit Shanghai.

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out CLA

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out KEP

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

define f2f

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

comma

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

add meeting

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

localized/internationalized

Co-Authored-By: chenrui <rui@meetup.com>

* Update and rename 2019-06-11-contributor-summit-shanghai.md to 2019-06-12-contributor-summit-shanghai.md

* Update out-of-resource.md (#14862)

add default value for housekeeping interval

* update pick-right-solution to setup page  (#14866)

* update pick-right-solution to setup page Fixes-14476

* update pick-right-solution to setup page #14866

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md (#14837)

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md

* s/贡献者峰会活动/贡献者峰会/

* s/不过/不论/

* Adopt PR suggestion

* s/你/您/

* s/当前贡献者节/现有贡献者活动/

* s/在亚洲和大洋洲的很多贡献者/很多亚洲和大洋洲的贡献者/

* s/新开发者/新贡献者/

* Adopt PR suggestion.

* s/上海会展中心/上海世博中心/

* s/工作者/贡献者/

* Refresh original English text as the related PR got merged

* Rename the filename to be consistent with English blog post PR

* remove useless file: whatisk8s.md (#14844)

* fix some typos in kubeadm init (#14864)

* Translate "Garbage Collection" page to Bahasa Indonesia (#14513)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* add Garbage Collection page in Bahasa Indonesia and minor fix on Pod Preset page

* remove replication.yaml

* add controllers/replicaset.yaml to example

* fix formatting error

* change dependent to dependen and fix note translation

* delete trailing space in heading

* Dangling "pick-right-solution" references - Italian  (#14806)

* Fixes-14477

* update pick-right-solution to setup page Fixes-14476

* update sentences and fix typo lang/it Fixes-14477

* Revert "update pick-right-solution to setup page Fixes-14476"

This reverts commit e949a7f3d4bc65fa91339d8d4b826e499e552455.

revert wrong commit

* Update _index.md (#14685)

* Fixed typo (#14845)

* Add content/es/docs/reference/glossary/kops.md (#14533)

* [docs-fr] add missing overview (#14815)

* translated term: container-runtime (#14921)

* Fifth Korean localization work for release-1.14 (#14578) (#14874)

Change List
* ko: add tutorials/clusters/apparmor #12455 (#14613)
* ko: add tasks/access-application-cluster/configure-dns-cluster (#14628)
* ko: add tasks/access-application-cluster/communicate-containers-same-… (#14627)
* ko: Update outdated files of setup and tasks in dev-1.14-ko.5 partly (#14683)
* translate to content/ko/docs/concepts/cluster-administration/cluster-… (#14237)
* Update renamed or deleted files in dev-1.14-ko.5 (#14710)
* Create pod.md (#13927)

Co-Authored-By:    Yoon <learder@gmail.com>
Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Claudia J. Kang <claudiajkang@gmail.com>

* fixing carousel Fixes ##14882 (#14895)

* translated term: container (#14909)

* translated glossary/aggregation-layer.md from en to fr (#14911)

* Tidy reference doc generation guide (#14825)

- fix YAML marked as shell
- trim trailing whitespace

* Tidy garbage collection controller page (#14856)

* Tidy code blocks

* Reword for better readability

Revert "Removing merge conflicts for branch dev1.15  (#14940)"

This reverts commit 3c42770bc4c939cd371caa0f3b9bc229533d3d8f.

Update content from master and resolve conflicts dev-1.15 (#14950)

* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file.
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting

Corrected formatting

* Correcting number sequence

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update …
zacharysarah pushed a commit that referenced this pull request Jun 17, 2019
Corrects the part of configmap for CoreDNS

Readded the link to Instana and Sysdig, which seem to have gone missing due to a merge error or anything like that during preparationg of the 1.14 release. (#14184)

original pull request: https://github.com/kubernetes/website/pull/12977

Signed-off-by: noctarius <me@noctarius.com>

Updated self-hosting documentation (#13866)

* updated self-hosting documentation

* removed more referances

* updated wording

* updated self-hosting warning to be more clear about the effects of pivot has on your cluster

* Update content/en/docs/setup/independent/self-hosting.md

Co-Authored-By: Klaven <mcounts@suse.com>

Watch bookmarks documentation (#14379)

Add docs for volume cloning (#14591)

Add support for quotas for ephemeral storage monitoring. (#14268)

Add documentation for PVC in use protection (#14700)

This PR adds doc to describe PVC in use protection
for PVC actively in use as a snapshot source.

Add a placeholder doc (#14643)

* Add a placeholder doc

* Update persistent-volumes.md

Update CSI migration docs with Azure Disk/File details (#14707)

Signed-off-by: Deep Debroy <ddebroy@docker.com>

kubeadm-1.15-certs-renewal (#14716)

move podresources endpoint to beta (#14622)

Add webhook admission outline (#14671)

Add custom resource quota example (#14492)

kubeadm: Document new v1beta2 config format (#14607)

Signed-off-by: Rostislav M. Georgiev <rostislavg@vmware.com>

CSI Inline Ephemeral Documentation Update (#14704)

* CSI inline ephemeral ver update in doc

* CSI inline ephemeral feature-gate update

Docs for feature: PDB support for custom resource with scale subresource (#14519)

VolumeSubpathEnvExpansion Beta Documentation (#13846)

kubeadm-setup: update all setup related documents for 1.15 (#14594)

promote AWS-NLB Support from alpha to beta (#14451)

Added explanation of alpha non-preempting PriorityClasses to the "Pod Priority and Preemption" doc. (#14599)

Add a section for service load balancer cleanup

Add a user document for the scheduling framework (#14388)

Graduate node PIDS limiting to beta (#14425)

Drop .travis.yml from dev-1.15 branch (#14812)

kubeadm: update the reference documentation for 1.15 (#14596)

* kubeadm-ref: update placeholder generated files

* kubeadm-ref: include reset-phase.md document

Also update reset.md to reflect the addition of reset phases.

* kubeadm-ref: update authored content

* kubeadm-ref: remove imports for removed "config upload" commands

* kubeadm-ref: add page for kubeadm upgrade phases

Update HPA Algorithm Docs for v1.15 (#14728)

Also changes a link to algorithm details from initial design proposal in Github.

concepts/extend-kubernetes/api-extension: add 1.15 features (#14583)

kubeadm-tasks: include v1.14->v1.15 upgrade document (#14595)

Remove v1.11 upgrade documents.

Document webhook and kube-aggerator port configuration (#14674)

Create nodelocaldns.md to describe NodeLocal DNSCache feature. (#14625)

* Create nodelocaldns.md

This contains info about NodeLocal DnsCache feature.

* Update nodelocaldns.md

* Address review comments

Removing merge conflicts for branch dev1.15  (#14940)

* Fix typo (#14299)

* Correct publish date for blog post (#14302)

* Corrects pick-right-solution.md (#14305)

* Corrections for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file.
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting

Corrected formatting

* Correcting number sequence

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* improve translation

* cleanup component install to use new catalog feature (#14063)

* cleanup component install to use new catalog feature

sequence of operations

cleanup component install to use new catalog feature

* Update krib.md

* Fix dangling "pick-right-solution" references - English (#14468)

* Fix dangling references

* Redirect to setup

* english update only

* english update only

* Update last file

* word fix

* Add blog post about Kyma from CNCF landscape (#14266)

* Create 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Create test.md

* Add files via upload

* Delete test.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update content/en/blog/_posts/2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

Co-Authored-By: derberg <derberg@wp.pl>

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Add files via upload

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-08-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Update 2019-05-23-Kyma-extend-and-build-on-kubernetes-with-ease.md

* Fix typo "feedbacks" (#14505)

Feedback is uncountable, just a nitpick ;-)

* update link to front matter description (#14493)

Update the front matter link from jekyll to gohugo.

* Fix dead links related to Kubernetes object management (#14481)

* Translate Disruptions docs to Indonesian (#14395)

* Translate Disruptions docs to Indonesian

* Several changes regarding reviews:
- Use underscore for italic
- Italicize "cloud"
- Consistency of Disrupsi and Gangguan -> Use Disrupsi instead
- Change "usir" to italicized "evict"
- Change "pengontrol" to "pengendali"
- Change "kuras" to "drain"
- Emphasize first mention of disrupsi with bold instead
- Some typo and standard words fixes
- Fixes a potentially fatal translation of "hosting provider"
  - From "penyedia layanan cloud" to "penyedia layanan Kubernetes

* Initialize Taints and Tolerations in Bahasa Indonesia. (#14405)

* Initialize Taints and Tolerations in Bahasa Indonesia.

* Fix typos

* Choisir la bonne solution link updated! (#14483)

* Choisir la bonne solution link updated!

Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Choisir la bonne solution link updated!

Co-Authored-By: Cheikh Rouhou <CheikhRouhouInes94@gmail.com>
Co-Authored-By: Gergey Csatari <gergely.csatari@nokia.com>

* Remove some spaces

* Update kubecon buttons on homepage (#14521)

* Update kubecon buttons on homepage

* Update _index.html

* Update cluster-administration-overview.md (#14510)

* Update cluster-administration-overview.md

according to #14442 and related with #14480

* Update cluster-administration-overview.md

* Update overview.md (#14424)

* Update overview.md

Fixed broken links for the Linuxacademy courses

* Update overview.md

* Add content/es/docs/reference/glossary/job.md (#14359)

* Agregado el termino Job al glosario

* Traducida la página de Job

* Update content/es/docs/reference/glossary/job.md

accepted reviewer changes

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/rkt.md (#14365)

* es/docs/references/glossary: Add rkt term

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/rkt.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add translations for Imperative Command for Bahasa Indonesia (#14064)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-command.md for Bahasa Indonesia

* Update translations for Imperative Command for Bahasa Indonesia

* Update URL in k8s.io/docs/tasks/federation/administer-federation/cluster/ (#14463)

* Add /content/fr/docs/reference/_index.md (#14528)

* Add /content/fr/docs/reference/_index.md

* translate title and title Link

* take out the approvers section

* replace design by conception

* Update content/fr/docs/reference/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update install-minikube.md (#14542)

The link https://github.com/kubernetes/minikube#other-ways-to-install doesn't exist anymore.
So either we remove the link to it or we fix the minikube README and add a new section for alternative ways to install minikube.
What do you think?

* Tidy & reword “Configure a Pod to Use a Projected Volume for Storage” (#14539)

* Reference glossary entry for Secret

* Fix code block format code

* Tidying & rewording

* Fix HTML typo (#14527)

* Add content/fr/docs/tutorials/_index.md (#14529)

* Add `content/fr/docs/tutorials/_index.md

* The navigation menu was broken without it.
* Translation from `content/en/docs/tutorials/_index.md`

* Update content/fr/docs/tutorials/_index.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* fix kubernetes certified logo url (#14511)

Signed-off-by: harshvkarn <harshvardhan.karn@mayadata.io>

* Add more language specific slack channels (#14506)

* Add more country/language specific slack channels

* Fix Finnish slack channel

Co-Authored-By: Markus Maga <markus@maga.se>

* Add spanish translation for node (#14360)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add container-environment-varibales concepts page (#14378)

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

Add raelga as reviewer

Co-Authored-By: Rael Garcia <me@rael.io>

Remove typo

Co-Authored-By: Rael Garcia <me@rael.io>

Add context to the link

Co-Authored-By: Rael Garcia <me@rael.io>

Change the word to more international one

Co-Authored-By: Rael Garcia <me@rael.io>

Update content/es/docs/concepts/containers/container-environment-variables.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/cluster.md (#14472)

Co-Authored-By: Rael Garcia <me@rael.io>

* Fourth Korean localization work for release-1.14 (#14578)

This commit is the fourth Korean l10n work for release-1.14.

Change List

* Translate concepts/overview/object-management-kubectl/declarative-config in Korean (#14285)

* translate cron-jobs.md to korean + add _index.md (#14024)

* ko: update outdated files in dev-1.14-ko.4 #14207 (#14347)

* Translate standardized glossary Tag Workload in Korean (#14208)

* translate to content/ko/docs/concepts/cluster-administration/controll… (#14234)

* ko: update concepts, contribute, tasks in dev-1.14-ko.4 #14207 (#14502)

* ko: update cheatsheet in dev-1.14-ko.4  (#14515)

Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Kim Young Dae <38598117+zer0big@users.noreply.github.com>
Co-Authored-by:    Claudia J. Kang <claudiajkang@gmail.com>
Co-authored-by:    Yoon <learder@gmail.com>
Co-authored-by:    June Yi <june.yi@samsung.com>
Co-authored-by:    Seokho <shsongist@gmail.com>

* Updating blog OWNERS (#14338)

* Fix  content/es/docs/setup/_index.md (#14491)

Dangling "pick-right-solution" references kubernetes#14474
es docs redirection  404 fixed

* Add annotation page (#14358)

* Add content/es/docs/reference/glossary/sysctl.md (#14390)

Signed-off-by: Jose Luis Perez Diez <jluis@escomposlinux.org>

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>
Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* fix link to aws.go (#14550)

* fix link to aws.go

* fix link to aws.go

* Use shortcode for note in Kops glossary entry (#14534)

* Use note shortcode in kops glossary entry

This brings the entry closer to Kubernetes' style guide for
documentation.

* Reword kops glossary entry

- Write “Terraform” with a capital T (it's a proper noun)
- Adjust grammar

* Delete resources created during this task (#14536)

* [WIP] Clean up and reorganize minikube.md (#14255)

The current content was not following the style guide and lacked information on what the user was doing under the quick start section. Added more information and tested the section out. Further reorganized the content.

Correct typos

Updated the content.

Updated the content

Fixed syntax error.

Update the unordered list formatting

Fix formatting issues

Formatting update

Format the content

Format the content

Format content

Format ordered content

Format unordered list

Clean up and reorganize minikube.md

Updated the content

Updated the content as per the comments received.

Fixed an error

Fixes the note shortcode

Fixes error in shortcode

Clean up and reorganize minikube.md

* docs-fr | tutorials | create-cluster (#14584)

* init pages tuto FR create-cluster

* typo

* update

* update index

* Update kubecon buttons on homepage fr (#14587)

update

* Fix OpenAPI deprecated endpoints in Kubernetes 1.14 (#14608)

* Reword glossary entry for etcd (#14621)

* Link to official etcd documentation

* Reword etcd glossary entry

* Update etcd.md

* Update code of conduct based on upstream changes (#14612)

Level with upstream commit 214585e24aab747fb85c2ea44fbf4a2442e30de6

* Use `runtime/default` for seccomp. (#14616)

* Corrected documentation for kubectl tab completion on Mac (#14617)

* Corrects procedure to get tab completion on Mac

Tab completion only requires the installation of bash-completion and sourcing the bash_completion script.

Installing bash-completion@2 doesn't work and source <(kubectl completion bash) is no longer necessary in the .bash_profile.

* Removed reference to other methods that don't work

* Update install-kubectl.md

* Fix reference to features state to beta (#14618)

* Fix reference to features state to beta

* Update device-plugins.md

* Update the pull Request template wording (#14619)

* [WIP]Fix typo

Fix typo

* Update PULL_REQUEST_TEMPLATE.md

* Update config option for openstack block storage (#14603)

* update config option for openstack block storage

* Update cloud-providers.md

* Remove initializers feature gate (#14602)

* Remove initializers feature gate

Initializers are removed in 1.14
kubernetes/kubernetes#72972

* Update feature-gates.md

* fix link to Storage Classes doc (#14551)

* correct the Feature:PodPriority in feature-gates.md (#14547)

* Remove initializers (ja) (#14626)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Update content/es/_index.html with new links (#14589)

* Update content/es/_index.html with new links

* Update _index.html

* Add content/es/docs/reference/glossary/service.md (#14361)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-developer.md (#14372)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/image.md (#14364)

* Add content/es/docs/reference/glossary/image.md

* Update content/es/docs/reference/glossary/image.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/application-architect.md (#14373)

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/secret.md (#14356)

* Add content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/secret.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Add translations for Imperative Config for Bahasa Indonesia (#14530)

* Translate declarative config for Bahasa Indonesia

* Fix typos and untranslated sentences from previous commit for declarative-config for Bahasa Indonesia

* Add _index.md to object-management-kubectl translations for Bahasa Indonesia

* Translate imperative-config.md for Bahasa Indonesia

* Update missing translations in imperative-config.md for Bahasa Indonesia

* Add  content/es/docs/reference/glossary/pod.md (#14368)

* Add  content/es/docs/reference/glossary/pod.md

Apply suggestions from code review

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/pod.md

Co-Authored-By: Alexander Brand <alexbrand09@gmail.com>

* Fix typo (#14592)

* Cloud Native Security Intro (#14495)

* initial aggregation of security recommendations

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Jim Angel <jimangel@users.noreply.github.com>

* Update content/en/docs/concepts/security/overview.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* address concerns in PR comments

* Document rounding behavior for PDBs (#14408)

* Document rounding behavior for PDBs

* Update content/en/docs/tasks/run-application/configure-pdb.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update configure-pdb.md

* content/es/docs/reference/glossary/selector (#14369)

* Add relevant glossary tooltips (#14632)

Guide reader to learn more about StatefulSet.

* Remove initializers (id) (#14655)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Remove initializers (zh) (#14654)

Initializers are removed in 1.14 [1]

[1]: https://github.com/kubernetes/kubernetes/pull/72972

* Fix Typo in the deprecation warning (#13488)

* Update minikube.md (#14662)

Fix linking in same document for preventing 404 errors because the url parts get duplicated now.
e.g: https://kubernetes.io/docs/setup/minikube/docs/setup/minikube/#interacting-with-your-cluster
fix would be: https://kubernetes.io/docs/setup/minikube/#interacting-with-your-cluster

* fix typo in install-kubeadm.md (#14680)

* New upstream commit for code of conduct (Portuguese) (#14630)

* Fix Container Environment Variables full link (#14663)

* fix typo in romana-network-policy.md (#14661)

* fix typos in configure-aggregation-layer.md (#14650)

* Link to 'Add image pull secret to service account' (#14669)

* Link to 'Add image pull secret to service account'

This page does not mention the fact that image pull secrets can be specified through a service account. So adding link to the section which gives details about 'adding image pull secret to service account'.

* Correcting link url

Correcting link url

* change to documentation ip adress #14664 (#14677)

* update feature-gates.md (#14635)

* Add german slack channel and maintainer (#14489)

* Add german slack channel and maintainer

* Update German Maintainer

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

* Updates kubernetes-basics (#14702)

Minor updates:
- Add a full stop.
- Removed the 'Start the tutorial›' section. The sections are already linked from 1 to 6 and this section doe not add any value after point 6.

* Updated target environments supported by Kublr (#14698)

* updating ICP version 3.1.2 to 3.2.0 (#14697)

* clean up feature state examples, style guide (#14699)

* small grammar fixes in overview/components.md (#14693)

Trival patch to fix a couple grammatical mistakes I found while going
through overview/components.md.

* Update secret.md (#14690)

fix (#解码-secret)

* document version changes of critical pod (#14684)

* document version changes of critical pod

* document system priority class name version requirement

* Update guaranteed-scheduling-critical-addon-pods.md

* Adapt docs for kubectl completion on macOS (#14636)

* Clarify behavior of parallel pod management policy (#14606)

* Fix typo: Update to hello-minikube (#14706)

* corrected example for private image string format (#14283)

without specifying registry details for `image` value, You will get following error if you are using a private registry even when your private images are hosted in docker.hub and you have valid credentials configured for the same.

Failed to pull image "xxx/xxx-app:0.0.1": rpc error: code = Unknown desc = Error response from daemon: pull access denied for xxx/xxx-app, repository does not exist or may require 'docker login'

* Tweak glossary definition for Node (#14317)

* Tweak glossary definition for Node

The services (eg kubelet) that run on a Node are not the kind of
Service that the Kubernetes API knows about. Reword accordingly.

Also, highlight that Docker is one container runtime and that
there are others.

* Adopt suggestions from https://github.com/kubernetes/website/pull/14523

Co-Authored-By: Rael Garcia <me@rael.io>

* unhold the binaries on the worker nodes during upgrade (#14708)

* Improve Pivotal row in Production Setup table (#14648)

* Improve Pivotal row in Production Setup table.

- Provider column should contain company name
- Change check marks to product links to match other rows

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Spell out PKS abbreviation.

Co-authored-by: Danny Berger <dberger@pivotal.io>

* Prefer "minikube delete" over "rm -rf ~/.minikube" (#14647)

Using `rm -Rf ~/.minikube` is not necessary in modern (v1.x) versions of minikube, and is highly discouraged as may can leave dangling VM's running, which minikube will fail to recover from.

Example issue: https://github.com/kubernetes/minikube/issues/4377

* Reword documentation for Service concept (#14526)

* Reword glossary entry for Service

New wording should be more suitable for inclusion via a
glossary_definition shortcode.

* Improve What's Next section for Service concept

* Rename Services concept to singular

This matches other concept documentation, eg Deployment.

* Use documentation IP address range

1.2.3.4 is outside the blocks reserved for documentation.

* Reword Service concept description

Services direct traffic to Pods, not containers

* Write IPVS in uppercase

* Link from Security concept to related pages (#14726)

* Remove unneeded "groups" from CSR yaml example (#14723)

* fix homepage redirect of localized documentations (#14586)

* Add case studies from cncf.io (#14520)

* Add case studies from cncf.io

* Delete index.html

* Update index.html

* Update index.html

* Update index.html

* Update index.html

* remove Financial Times

* update links

* fix typo en/fr (#14749)

* changed example domain to be **example.com** (#14740)

**your.private.registry.example.com** is a better choice of domain name for a non-existing sample domain name than calling it **yourprivateregistry.com**

refer #14283

* Fix a small typo (#14743)

* Update images.md (#14736)

* Update images.md

* Update content/en/docs/concepts/containers/images.md

That works fine and thank you.

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Add KubeOne as AWS turnkey solution (#14737)

* Fix typo in limit-range.md. (#14730)

* use glossary defs in overview/components.md (#14721)

This patch promotes re-use of the existing kube-proxy glossary
definition by referencing it from overview/components.md. Similarly, we
move the definition of Container Runtime into a new glossary definition
so that other pages may refer to it.

* Kubespray supports Custom VM and BareMetal (#14717)

Kubespray supports Custom (On-premises VMs) & Custom (Bare Metal).

https://kubespray.io states:

> Can be deployed on AWS, GCE, Azure, OpenStack, vSphere, Packet (bare metal), Oracle Cloud Infrastructure (Experimental), or Baremetal

* fix markdown format (#14756)

![screenshot](https://silenceshell-1255345740.cos.ap-shanghai.myqcloud.com/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-06-06%20%E4%B8%8A%E5%8D%8811.08.13.png)

* Update guestbook-logs-metrics-with-elk.md (#14755)

* Issue #14703 - Update Images.md (#14757)

* update pod-overview.md (#14758)

replaced the changed required in #14746

* Translate docs/tasks/configure-pod-container/attach-handler-lifecycle-event in Chinese (#14605)

* Add zh/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md
Add zh/examples/pods/lifecycle-events.yaml

Translate zh/includes/task-tutorial-prereqs.md to chinese

* Apply suggestions from code review

Thanks for tengqm's review

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Apply suggestions from code review

Thanks for tengqm's help again

Co-Authored-By: Qiming <tengqim@cn.ibm.com>

* Modify the order of text in markdown format

* Unified translation into 处理函数

* Update “Autoscale the DNS Service in a Cluster” (#14525)

* Mark code blocks for syntax highlighting

* Use glossary tooltips where appropriate

* Reword DNS horizontal autoscaling task

- Mention that addons manager is deprecated
- Use unordered list for “What's next”

* Note AMD64 instruction set assumption

* Update to more recent cluster-proportional-autoscaler

Based on sample configuration in https://raw.githubusercontent.com/kubernetes/kubernetes/beba9921aa1a73431bf322ffa17df6b2aa314b0c/cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

* Explain motivation for RuntimeClass (#14490)

* Update Calico to v3.7 (#14501)

* Update link and standardize language (#14482)

* Emphasize that cluster API v1 is deprecated (#14461)

* Rs rollingupdate (#14462)

* Redirect to Deployment docs

* Redirect to Deployment docs

* change using to use

* typo

* fix extra file

* line wrap Deployment

* Adding annotation example (#14440)

* Adding annotation example

Adding example to show how annotation looks like in manifest.  This will help users to understand where exactly we can use the annotations whose details are already given on this page. Annotation `imageregistry: https://hub.docker.com/`  used intentionally to make it more relevant as earlier section talk about registry address  annotation.

* Resolving review comments

Resolving review comments

* setup/independent: fix cilium installation guide for kubeadm (#14411)

Signed-off-by: André Martins <aanm90@gmail.com>

* Adding example to show labels in POD yaml (#14439)

* Adding example to show labels in POD yaml

This page talk about labels and its usage. Also it talk about syntax for specifying labels. But it does not show how we can have labels in resource manifest. So with this PR i am adding example which shows that how we can have labels in pod manifest.

* Changes to resolve review comments

Changes to resolve review comments

* New upstream commit for code of conduct (Spanish) (#14631)

* revert on a name translation of card made by mistake (#14751)

* Revert "fix typo en/fr (#14749)" (#14750)

This reverts commit 07812a5ac847b29e49a508f743ed7cf7c07df1f4.

* docs-fr | concepts | services-networking | ingress (#13742)

* [docs-fr] init ingress.md

* [docs-fr] remove glossary

* [docs-fr] add definitions

* [docs-fr] add ingress spec

* add default backend and ingress types

* fix netlify error for the unfound yaml file

* [docs-fr] add TLS and loadbalancing

* [docs-fr] fix some french typos

* [docs-fr] replace 'équilibreur de charge' with 'load-balancer'

* [docs-fr] fix typo

* [docs-fr] fix french typos and syntax

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/fr/docs/concepts/services-networking/ingress.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* [docs-fr] enhance syntax

* [docs-fr] update load-balancer spec

* [docs-fr] fix broken deployment

* [docs-fr] fix typos

* fix typo and wrong url (#14772)

* Fix typo, missing 's' for plural (#14783)

* Update bootstrap js because bootstrap 3.3.7 is vulnerable (#14775)

https://snyk.io/vuln/npm:bootstrap?lh=3.3.7&utm_source=lighthouse&utm_medium=ref&utm_campaign=audit

* small typo: extra verb (#14765)

* correct typo in home directory name (#14659)

home directory given as /etc/kuberentes/pki
should be /etc/kubernetes/pki

* Use Hugo extended for Sass/CSS (#13113)

* Correction: sysctl entries aren't annotations (#14796)

* Correction: sysctl entries aren't annotations

First, thank you for your work on this documentation. It means so much to so many users. I found that the sysctl documentation linked here explains that sysctl pod security policy entries are in the spec field, not done via annotation. This corrects it, using as much of the original language as possible from the linked sysctl documentation.

* Update pod-security-policy.md

* Fixes PDB rounding docs (percentage as string instead of float) (#14788)

* Clarifies how to set `minAvailable` using a percentage

* Fixes other references to percentages

* improve arch/nodes.md info on Conditions and Allocatable (#14753)

* clarify Conditions section in arch/nodes.md

The field name is `conditions` (plural), so have the section name match
the field name. In addition, updates the JSON output of an individual
Condition to match all the fields returned in k8s 1.14+.

* add information about Allocatable to nodes.md

Since k8s 1.6, a Node object returns information about both the node's
capacity as well as the allocatable resources on the node. The latter is
a representation of the resources that are available for normal pods to
consume.

This patch adds information about capacity vs. allocatable to the
documentation about nodes and provides a link to where the reader can
find more information about reserving compute resources.

* Add missing logrotate component to logging with streaming sidecar image (#14780)

* recommended admission controllers are enabled by default (#14784)

Since the recommended ones are already enabled by default, they do not need to be explicitly specified with `--enable-admission-plugins`

* add link to default admission controllers (#14808)

* Add CSI type pv and description of CSI accessMode (#14798)

* Federation Remediation Part Deux  (#14140)

* first removal of federation

* more fixes

* Update service.md (#14804)

Removed one 'means' from incorrect repeat.

* fix padding for docs home on nav (#14807)

updated padding for docs home on nav
testing new sass->css, hugo extended

* Fixes the IP addresses shown in the ip-masq diagram. (#14789)

The diagram can now be edited in draw.io

Issue #13917

* Update install-minikube.md (#14776)

Add message displayed when Hyper-V is already installed.

* Updated podpreset.md to reflect changes in #71479 (#14764)

* Updated podpreset.md to reflect changes in #71479

See https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#other-notable-changes-3

* Refactored explanation to facilitate localization.

* Remove Port Proxy reference (#14769)

The repository is no longer maintained and deprecated

* add clux/kube-rs client (#14759)

* add clux/kube-rs client

add [clux/kube-rs](https://github.com/clux/kube-rs) to list of
[community-maintained client
libraries](https://kubernetes.io/docs/reference/using-api/client-libraries/#community-maintained-client-libraries)

* reorder

* Update control-plane-flags.md (#14729)

* add related note with pod deleted  (#14709)

* feat: add job application has some error and restartPolicy is not Nerver pod will be delete note

* feat: optimize delete pods related suggestion

* Update jobs-run-to-completion.md

* Update persistent-volumes.md (#14811)

Update PersistentVolume description.

* Add recommendation to use kms provider (#13264)

* Add recommendation to use kms provider

Add a warning to encrypting secrets documentation that if using a provider with secrets encryption, kms provider is preferred as it materially changes the threat model.

* Update encrypt-data.md

* Update encrypt-data.md

Updated to include kms provider is Beta sice 1.12

* Update encrypt-data.md

* Add comment about where to run probe (#13815)

* Add comment about where to run probe

Add comment about where to run probe

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* Update language

Signed-off-by: Xiang Dai <764524258@qq.com>

* fix grammar nits

Signed-off-by: Xiang Dai <764524258@qq.com>

* updated recommend key path for multiple certificates . (#13895)

this is fix for issue #13892 " In certificate-path table, values of recommend key path for certificates are missing."

* update kubectl "$" format (#13256)

* Downloadable examples for “Run applications” section (#14147)

* Move examples ahead of commands that use them

In support of https://github.com/kubernetes/website/issues/12740

The aim is to adopt a consistent style around providing downloadable
examples for use with kubectl, etc.

* Tweak wording for stateful app pod example

* Adopt formatting conventions for code blocks

* Move ReplicationController sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Move PodDisruptionBudget sample YAML to examples

In aid of https://github.com/kubernetes/website/issues/12740

* Update test schema for new examples

* Use Unicode ellipsis in example

Aim here is to make the elision more obvious

* Split minikube install task into tabs (per-OS) (#14013)

* Put minikube install steps in per-OS tabs

* Work around nested <li> formatting issue

Using Markdown unordered lists inside tabs doesn't seem to work. These
changes are my work-around for that.

* Reword "laptop" to personal computer

Some computers aren't laptops

* Drop trailing whitespace

* Drop warning about removing other Mac hypervisors

* Add Ref to shared process namespaces (#14194)

* Add Ref to shared process namespaces

The article talking about ways container can talk to each other should include shared process namespace as a method

* Drop note on kube version in reference

* Check all commits in branch for examples (to trigger testing) (#14243)

* Check for examples changes in all branch commits

Review all the commits in the branch looking for changes inside
content/*/examples and if any are found, trigger testing.

This assumes that the main line branch is named "master"

* Tidy examples testing wrapper

 - print diagnostics to standard error
 - check for a "Yes" value rather than for absence of "No"

* Fix several potential issues with existing translation (#14785)

* some typos
* some weird formulations, copied from the original english sentence
* some missing translations

* Add accessibility guidelines to the style guide (#14292)

* [WIP] added accessibility guidelines to the style guide

Adopted the accessibility level A and AA guidelines to Markdown elements:
https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&currentsidebar=%23col_overview&levels=aaa

We still need to define attributes for the front matter. See, https://github.com/kubernetes/website/issues/14286

I am yet to draft the guidelines for images and alt text.

* fixed the note

Update style-guide.md

Incorporated the changes suggested

Incorporated the changes suggested.

fixed the formatting  issues in the table

fixed the spaces in the links section

fixed a space issue

fixed format issues in the link

added a11y guidelines to code section

removed a spacing issue

front matter guidelines best fit the using template section

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

incorporated the changes

incorporated the changes

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

title section for front matter guideline

updated the html characters

Update content/en/docs/contribute/style/style-guide.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

Update style-guide.md

* Improve concept page for Ingress (#14313)

* Highlight feature state for Ingress concept

* Fix command output marked as shell script

* Write "load balancer" as two words

* Clarify prerequisites for Ingress

* Tidy & reword

* Add link to Ingress Controllers topic

(further reading)

* Use a glossary tooltip for Secret

(readers may not have encountered that concept yet)

* Update term definitions in Ingress concept

- Adopt wording from glossary
  (NB: glossary_definition shortcode didn't seem suitable)
- Replace terms with glossary_tooltip where appropriate

* Add all the _index files for the French translation (#14744)

* initial french translation (#14793)

* Restructure the left navigation pane of setup (#14826)

* restructure left nav

* Restructure setup left navigation

* Update _redirects

* Incorporated all the changes suggested

* removed the Thumbs.db file

* Update _index.md for Spanish (#14645)

* Update _index.md

* Update _index.md

* Add content/es/docs/reference/glossary/kubeadm.md (#14546)

* Add content/es/docs/reference/glossary/kubeadm.md

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Update content/es/docs/reference/glossary/kubeadm.md

Co-Authored-By: Rael Garcia <me@rael.io>

* Add content/es/docs/reference/glossary/docker.md (#14553)

* Add content/es/docs/reference/glossary/docker.md

* Update content/es/docs/reference/glossary/docker.md

Co-Authored-By: Victor Morales <chipahuac@hotmail.com>

* Translate content/id/docs/concepts/cluster-administration/cluster-administration-overview.md into Portuguese (#14705)

* Added - Cluster Administration Overview as ptBR

* Fixed missing translation

* Fixed style

* rollback reviewers

* Add a script to check differences between translated and English version (#14731)

This script will query all the changes that happen to a reference document (in English) since the last time a given translation was merged (For instance in French).
This could help all the translation team to keep up with the changes that happened inside the reference document.

* fix a mistake in limit-range.md (#14836)

* Update field-selectors.md (#14839)

We should use --all-namespaces to filter all the service

* fix-zh-home (#14835)

* Update install-kubectl.md (#14840)

Add note: Docker for Windows adds its own kubectl to PATH

* 2 translated interactive tutorials for ES (#14417)

Signed-off-by: Ben Hall <ben@benhall.me.uk>

* Added blog post about the upcoming Contributor Summit Shanghai. (#14782)

* Added blog post about the upcoming Contributor Summit Shanghai.

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out CLA

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

Spell out KEP

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

define f2f

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

comma

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

add meeting

Co-Authored-By: chenrui <rui@meetup.com>

* Update content/en/blog/_posts/2019-06-11-contributor-summit-shanghai.md

localized/internationalized

Co-Authored-By: chenrui <rui@meetup.com>

* Update and rename 2019-06-11-contributor-summit-shanghai.md to 2019-06-12-contributor-summit-shanghai.md

* Update out-of-resource.md (#14862)

add default value for housekeeping interval

* update pick-right-solution to setup page  (#14866)

* update pick-right-solution to setup page Fixes-14476

* update pick-right-solution to setup page #14866

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md (#14837)

* zh-trans: add 2019-06-11-contributor-summit-shanghai.md

* s/贡献者峰会活动/贡献者峰会/

* s/不过/不论/

* Adopt PR suggestion

* s/你/您/

* s/当前贡献者节/现有贡献者活动/

* s/在亚洲和大洋洲的很多贡献者/很多亚洲和大洋洲的贡献者/

* s/新开发者/新贡献者/

* Adopt PR suggestion.

* s/上海会展中心/上海世博中心/

* s/工作者/贡献者/

* Refresh original English text as the related PR got merged

* Rename the filename to be consistent with English blog post PR

* remove useless file: whatisk8s.md (#14844)

* fix some typos in kubeadm init (#14864)

* Translate "Garbage Collection" page to Bahasa Indonesia (#14513)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* add Garbage Collection page in Bahasa Indonesia and minor fix on Pod Preset page

* remove replication.yaml

* add controllers/replicaset.yaml to example

* fix formatting error

* change dependent to dependen and fix note translation

* delete trailing space in heading

* Dangling "pick-right-solution" references - Italian  (#14806)

* Fixes-14477

* update pick-right-solution to setup page Fixes-14476

* update sentences and fix typo lang/it Fixes-14477

* Revert "update pick-right-solution to setup page Fixes-14476"

This reverts commit e949a7f3d4bc65fa91339d8d4b826e499e552455.

revert wrong commit

* Update _index.md (#14685)

* Fixed typo (#14845)

* Add content/es/docs/reference/glossary/kops.md (#14533)

* [docs-fr] add missing overview (#14815)

* translated term: container-runtime (#14921)

* Fifth Korean localization work for release-1.14 (#14578) (#14874)

Change List
* ko: add tutorials/clusters/apparmor #12455 (#14613)
* ko: add tasks/access-application-cluster/configure-dns-cluster (#14628)
* ko: add tasks/access-application-cluster/communicate-containers-same-… (#14627)
* ko: Update outdated files of setup and tasks in dev-1.14-ko.5 partly (#14683)
* translate to content/ko/docs/concepts/cluster-administration/cluster-… (#14237)
* Update renamed or deleted files in dev-1.14-ko.5 (#14710)
* Create pod.md (#13927)

Co-Authored-By:    Yoon <learder@gmail.com>
Co-Authored-By:    Woojin Na(Eddie) <kimchigood1130@gmail.com>
Co-Authored-By:    Claudia J. Kang <claudiajkang@gmail.com>

* fixing carousel Fixes ##14882 (#14895)

* translated term: container (#14909)

* translated glossary/aggregation-layer.md from en to fr (#14911)

* Tidy reference doc generation guide (#14825)

- fix YAML marked as shell
- trim trailing whitespace

* Tidy garbage collection controller page (#14856)

* Tidy code blocks

* Reword for better readability

Revert "Removing merge conflicts for branch dev1.15  (#14940)"

This reverts commit 3c42770bc4c939cd371caa0f3b9bc229533d3d8f.

Update content from master and resolve conflicts dev-1.15 (#14950)

* Update pick-right-solution.md (#14305)

* Fixes for https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/ (#14298)

* Add missing capture block end

* Drop outdated link to v1.6 upgrade

* Created nl.toml (#14131)

Dutch (NL) translation

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update i18n/nl.toml

Co-Authored-By: olku <22026726+olku@users.noreply.github.com>

Update nl.toml

Update i18n/nl.toml

Co-Authored-By: Roy Lenferink <lenferinkroy@gmail.com>

Feedback processed.

* Improve Kubernetes-setup-using-Ansible-and-Vagrant (#13999)

Fix a node IP issue when using vagrant.
See https://github.com/kubernetes/kubernetes/issues/60835 for detail.

Since the tutorial using debs, we need to configure node IP in
`/etc/default/kubelet`.
See https://kubernetes.io/docs/setup/independent/kubelet-integration/ for
detail.

* Add New Contributor Workshops blog post. (#14315)

* Add Indonesian Translation for names (#14320)

* Fix phrase

* Fix date format on glossary files

* changed the formatting of example-ingress.yaml (#14333)

change the formatting of example-ingress.yaml file.
Raising PR for #14284

* add links to individual readme files (#14324)

* Add co-chair role (#14219)

Add meeting guidelines, graphic

Update embedded image

Use raw HTML for image link

Edit path

Indent list items

minor edits

Add line breaks for indentation

Add bolding

Add section for meetings

Feedback from jimangel

* updated the links of cherrypick guide (#14348)

* Update deployment.md (#14345)

* Fix code block (#14334)

* Add links to the external cloud-provider repos (#14335)

Rather than just saying "they exist, good luck"

* List & watch can be authorized on named resources (#14339)

* Fix sentence format (#14311)

* Add cla page (#14363)

Add missing dot

Remove typos

* Move Karbon to on-premisses (#14269)

* Declare IPVS-based kube-proxy GA (#14263)

See: https://github.com/kubernetes/kubernetes/pull/58442

* en/glossary: use title for all Pod occurrences (#14366)

Use title case for all the Pod occurrences which appear in the rkt
glossary term.

* kubectl should also be held by apt-mark (#14250)

here apt installs both kubelet and kubectl but just holds kubelet. I think kubectl should alse be held by apt-mark.

```
apt-mark unhold kubelet && \
apt-get update && apt-get install -y kubelet=1.14.x-00 kubectl=1.14.x-00 && \
apt-mark hold kubelet
```

* Update create-cluster-kubeadm.md (#13801)

* Update create-cluster-kubeadm.md

* Update create-cluster-kubeadm.md

* Remove superfluous kubectl apply -f

* fix runasgroup psp policy (#14121)

* YAML code-block within a list bug fixed (#14293) (#14295)

* Localisation of the architecture section (#14145)

* Initialize Network Policy in Bahasa Indonesia. (#14287)

Fix typos and nitty gritty.

* Fixing the output of jsonpath (#14387)

Items is an array and the [ ] are missing in the jsonpath

* Correcting sequence of tasks for manage cluster daemon (#14383)

* Correcting order of display for daemon set tasks

Correcting order of display for daemon set tasks

* Correcting display order of daemon set task

Correcting display order of daemon set task

* Updated DaemonSet page to include SignalFx Agent. (#14385)

* move obj mgmt files to tasks (#14374)

* move obj mgmt files to tasks

* add redirects for moved files

* Fixing grammatical error (#14389)

* Correcting example to avoid ambiguity (#14354)

Both local and pod port number are same i.e. 6379 which causes confusion to first time reader. This can be easily avoided by using two different port number.

* Changed the redisslave version from v1 to v3. (#14276)

* Refractor _index.md (#14163)

* Updated Linux Academy courses (#14303)

* Updated Linux Academy courses

* Apply suggestions from code review

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Fix link syntax

* Update overview.md

* Correcting minikube quickstart steps (#14355)

* Correcting minikube quickstart steps

In minikube quickstart section , it was difficult to differentiate between command and its output. Also, There was no details given for each steps and its expected output. This PR fixes these issues.

* Correcting number formatting

Correcting number formatting

* Correcting numbering

Correcting numbering

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Update content/en/docs/setup/minikube.md

Co-Authored-By: Franklin Yu <franklinyu@hotmail.com>

* Corrected formatting

Corrected formatting

* Correcting number sequence

Correcting number sequence

* Create blog post draft (#14384)

* Create blog post draft

* Fixed comma problem and updated Cloud

* Edits for clarity (#14423)

* pick-right-solution.md (#14434)

Added Cisco Container Platform under "On-Premises turnkey cloud solutions"

* Fix link (#14438)

* Update imperative-command.md

* Update imperative-command.md

* removed the junk character (#14430)

* Switch to long command option (#14422)

* fix links to tool install (#14418)

* Remove extra '**' (#14413)

remove extra '*' from the end of the aritcle;
or they have other meanings :D

* Updated links to vendor specific implementions (#14400)

The following links where broken

* AZURE
* GCE
* AWS

In case of GCE I assume it changed to GCP, but please confirm if that is correct.

* document pod downwardAPI fieldRef & resourceFiledRef values (#14321)

* document pod downwardAPI fieldRef & resourceRef values of en version

* document pod downwardAPI fieldRef & resourceRef values of zh version

* typo correction

* Add containerd and CRI-O to glossary (#14309)

* Use relevant glossary definitions (#14414)

* Link upgrade to skewed version page (#14421)

* Link upgrade to skewed version page

It provides the order of upgrade and shows which versions are supported.
Solves (at least partially ) #14420

* Update cluster-management.md

* Update cluster-management.md

* Describe language specific style guide in l10n guide (#14437)

* Flag --export has been deprecated (#14432)

Flag --export has been deprecated, This flag is deprecated and will be removed in future.

* setup page replaces picking the right solutions (#14442)

* Update i18n/ja.toml (#13666)

* fix #13105

* Translate #12900 in advance

* Update ja.toml

* Pod yaml command and change pod curl (#14448)

* Translate "Pod Preset" page to Bahasa Indonesia (#14394)

* add pod preset page for language/id

* fix formatting

* fix typos and wording

* fix formatting and add few missed lines

* fix note formatting

* Add a Korean l10n reviewer to OWNERS_ALIASES (#14460)

* Add content/en/docs/reference/glossary/certificate.md (#14371)

* Update apiVersion on example-ingress to extensions/v1beta1 (#14449)

Update apiVersion on ingress to extensions/v1beta1

* Fix link in "Customizing DNS Service" docs (#14455)

* Second Japanese l10n work for release-1.13 (#14465)

* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153)

* [ja] Translate Hello Minikube in tutorials (#13100) (#13161)

* ja-trans: update supported-doc-versions.md (#13186)

* [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187)

*  ja-trans: update expose-intro.html (#13215)

* ja-trans: update expose-intro.html

* ja-trans: fix broken links by linking to english pages

* update deploy-intro.html (#13103) (#13208)

* update deploy-intro.html (#13103)

* Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

add /ja path

Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com>

* [ja] Update /setup/release/building-from-source.md (#13095) (#13220)

* ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228)

* ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232)

* ja-trans: update /ja/docs/tutorials/kubernetes-basics/

* ja-trans: translate card.title

* ja-trans: update setup/minikube.md (#13091) (#13219)

* [ja] Update content of setup/minikube.md, fixing the diff between 551489f 7b07d19.

* [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091)

* Correct Katakana words, using long vowel words

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Fix typos

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct some changes, thanks for the FB

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328)

* ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between 551489f and 7b07d19.
(Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff)

* ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094)

* Update content/ja/docs/setup/pick-right-solution.md

Correct small changes based on the feedback

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Better translation and refer the Japanese document link

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct Japanese anchors

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* Correct translation mistakes

Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com>

* ja: Translate /docs/home (#13366)

* follow to the latest format

* review

* ja: fix some unnatural translation and formatting (#13367)

* format

* Update content/ja/docs/setup/certificates.md

Co-Authored-By: inductor <kohei.ota@zozo.com>

* ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360)

* copy content

* remove reviewer block

* Translate heading and subheading.

* change translation

* ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359)

* copy content

* remove reviewer block

* Translate heading and subheading.

* ref. #13098 (#13358)

* ref. #13096 (#13357)

* ref. #13089 (#13353)

* ref. #13087 (#13351)

* ref. #13082 (#13348)

* ref. #13085 (#13349)

* ref. #13088 (#13352)

* ref. #13090 (#13354)

* ref. #13092 (#13355)

* ref. #13093 (#13356)

* ref. #13099 (#13361)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364)

* [ja] Translate the content: ja/docs/setup/independent/high-availability/

* remove redundant comma, words

* Update content/ja/docs/setup/independent/high-availability.md

余分な文字を削除

Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp>

* Update k8s.io/ja/docs/setup/cri/ (#13663)

* fix content.

* Update content/ja/docs/setup/cri.md

Co-Authored-By: cstoku <cs.toku.mail@gmail.com>

* Update cri.md

* Update co…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. language/en Issues or PRs related to English language lgtm "Looks good to me", indicates that a PR is ready to be merged. sig/docs Categorizes an issue or PR as relevant to SIG Docs. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

9 participants