Commit Graph

808 Commits (634dd83bbdce99983dcedfd5b7019fd162627c11)

Author SHA1 Message Date
Anthony cdf7613c6a Update set-up-coredns-provider-federation.md
modify "coredns" to "CoreDNS"
2017-08-14 10:38:54 -07:00
Anthony e4362bda83 Update configure-pod-configmap.md
modify "a ConfigMaps" to "a ConfigMap"
2017-08-14 10:26:45 -07:00
Anthony 98607fd3cc Update access-cluster.md
modify "api server" to "apiserver"
2017-08-14 10:24:20 -07:00
lemon-tree 8ff1c80bf5 Update assign-memory-resource.md
Because "Container" is a specific word in Kubernetes, so the first letter need to be capitalized.
2017-08-14 10:23:52 -07:00
XsWack e3d0567a40 Update quality-service-pod.md
fix bad url
2017-08-14 10:14:18 -07:00
Steve Perry 176b91d558 New Task topic for kubectl patch. (#4519) 2017-08-14 09:43:56 -07:00
XsWack 0e8832960d fix bad url
fix some bad url
2017-08-12 09:25:54 -07:00
XsWack bf3bbf42a2 Update port-forward-access-application-cluster.md
Fix leading spaces in kubectl commands
2017-08-11 11:00:24 -07:00
Lion-Wei 290e77988f Update federation-service-discovery.md
add a space.
2017-08-10 21:49:23 -07:00
Slava Semushin b6c5ecd438 encrypt-data.md: make base64 command work on Linux. 2017-08-10 21:34:34 -07:00
XsWack 551587e727 Update service-access-application-cluster.md
Fix leading spaces in kubectl commands and unified format.As ahmetb says,This is causing bash/zsh shells to not to record the executed command in the history. See this link for details: https://unix.stackexchange.com/questions/115917/why-is-bash-not-storing-commands-that-start-with-spaces
2017-08-10 17:57:34 -07:00
Stewart-YU 8f887edaf1 Update run-single-instance-stateful-application.md (#4709)
missing a space
2017-08-10 16:58:08 -07:00
Stewart-YU cc7cadb138 Update ingress.md (#4712)
spelling mistake.
2017-08-10 12:03:54 -07:00
Stewart-YU b3eca614c7 Update ingress.md
missing space.
2017-08-10 10:48:51 -07:00
Matthew Huxtable 2bd131f98f Correct indent bug in httpGet liveness probe 2017-08-10 10:47:17 -07:00
Rohit Sharma cd90b08c06 Update extend-api-third-party-resource.md 2017-08-09 10:09:13 -07:00
Xiaoyu Zhang da139b36be Update kubectl get scale's output (#4708) 2017-08-09 10:07:21 -07:00
supereagle 23b482294e Update configure-pod-configmap.md 2017-08-09 09:59:48 -07:00
XsWack 64d8c68a3f Update configure-liveness-readiness-probes.md
Fix bad url. http://k8s.io/docs/user-guide/liveness/image/server.go is a bad url and it should be https://github.com/kubernetes/kubernetes/blob/master/test/images/liveness/server.go
2017-08-09 09:54:58 -07:00
XsWack 646880aaba Update resource-usage-monitoring.md
fix typo
2017-08-09 09:11:27 -07:00
dengyi1996 627ff5d40a Update weave-network-policy.md (#4683)
* Update weave-network-policy.md

add weavenet networkpolicy example

* Edits from zacharysarah

* Merge branch 'master' into patch-10

* Merge branch 'patch-10' of github.com:dengyi1996/kubernetes.github.io into patch-10

* Merge branch 'master' into patch-10
2017-08-08 22:49:09 -07:00
XsWack 544891a7e2 Update configmap.md
fix typo
2017-08-09 08:58:32 +08:00
Slava Semushin 8bbae8df49 encrypt-data.md: update all secrets in all namespaces. 2017-08-08 15:09:39 -07:00
XsWack 428a03de7c Merge branch 'master' into patch-9 2017-08-08 16:46:29 +08:00
Steve Perry 2576f404f0 Start new task for Opaque Integer Resources. (#4363) 2017-08-08 01:05:23 -07:00
XsWack 90b7489ecf Update set-up-cluster-federation-kubefed.md
fix typo and unified format
2017-08-08 14:22:27 +08:00
XsWack 07bd50d390 Update index.md
fix typo
2017-08-08 12:05:33 +08:00
XsWack ad01c19d9a Update load-balance-access-application-cluster.md
Fix leading spaces in kubectl commands
2017-08-08 08:47:42 +08:00
Zachary Corleissen d5fdf214de [404 fix] One character syntax fix (#4674)
* One character syntax fix

* Added redirect for delete-pods

* Removed redirect_from statement
2017-08-07 16:55:19 -07:00
dengyi1996 d76fbb0b27 Update scheduling-gpus.md
privileged mode is not needed on my kubernetes cluster, and it will make other developers confuse.
e.g:
I try to use this example to test whether the keyword "resources->limit" will work.when I set limit:1 with privileged,I can reach all gpus instead of single gpu.

```
kind: Pod
apiVersion: v1
metadata:
  name: gpu-pod-1
spec:
  containers:
  - name: gpu-container-1
    image: tensorflow/tensorflow:latest-gpu
    securityContext:
      privileged: true
    env:
    - name: LD_LIBRARY_PATH
      value: "$LD_LIBRARY_PATH:/usr/lib/nvidia"
    - name: CUDA_HOME
      value: "/usr/local/nvidia"
#    securityContext:
#      privileged: true
    resources:
      limits:
        alpha.kubernetes.io/nvidia-gpu: 1
    volumeMounts:
    - mountPath: /usr/local/nvidia/bin
      name: bin
    - mountPath: /usr/lib/nvidia
      name: lib
  volumes:
  - hostPath:
      path: /usr/local/cuda/bin
    name: bin
  - hostPath:
      path: /var/lib/nvidia-docker/volumes/nvidia_driver/375.26/lib64/
    name: lib
```
it show all gpu devices because of privileged mode
```
[name: "/cpu:0"
device_type: "CPU"
memory_limit: 268435456
locality {
}
incarnation: 3223127178054071976
, name: "/gpu:0"
device_type: "GPU"
memory_limit: 103809024
locality {
  bus_id: 1
}
incarnation: 6184347283432924133
physical_device_desc: "device: 0, name: Quadro K4200, pci bus id: 0000:03:00.0"
, name: "/gpu:1"
device_type: "GPU"
memory_limit: 103809024
locality {
  bus_id: 1
}
incarnation: 1058630844567460797
physical_device_desc: "device: 1, name: Quadro K4200, pci bus id: 0000:04:00.0"
]

```
2017-08-07 16:49:35 -07:00
Malepati Bala Siva Sai Akhil b795543eb2 Fix Broken Link
Fix Broken Link related to client-go in Access Clusters Using the Kubernetes API
2017-08-07 15:53:53 -07:00
lichuqiang 58f454f424 fix typo 2017-08-07 15:41:21 -07:00
XsWack 6c0e3bdbba Update encrypt-data.md
fix typo
2017-08-07 15:40:31 -07:00
XsWack 0951183d64 Update managing-tls-in-a-cluster.md
fix typo
2017-08-07 15:40:14 -07:00
Steve Perry 3d2c06c4c3 Update Task topics on resource management. (#4158) 2017-08-07 15:30:29 -07:00
Ahmet Alp Balkan a86d9355b0 Fix leading spaces in kubectl commands
This is causing bash/zsh shells to not to record the executed command in the
history. See this link for details: https://unix.stackexchange.com/questions/115917/why-is-bash-not-storing-commands-that-start-with-spaces

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-08-06 14:19:04 -07:00
lichuqiang b27bbecb89 fix typo 2017-08-05 12:15:36 +08:00
Jessica Yao 59349b8bdc edit instructions for hpa based on custom metrics 2017-08-04 17:25:43 -07:00
dengyi1996 bda690e547 Update scheduling-gpus.md 2017-08-04 14:36:53 -07:00
Aaron Crickenberger 18e9aa59d1 Rename OWNERS assignees: to approvers:
They are effectively the same, assignees is deprecated
2017-08-03 16:22:52 -07:00
Rye Terrell 3fd1ff3036 add instructions for installing kubefed with snap 2017-08-03 13:51:41 -07:00
XsWack 2c11c0de1f Update access-cluster.md
https://git.k8s.io/client-go/examples/examples/in-cluster/main.go is a bad url and it should be  https://git.k8s.io/client-go/examples/examples/in-cluster-client-configuration/main.go
2017-08-03 13:46:55 -07:00
Cody Clark 8e012468a4 Removing extra spaces
Per Issue [4602](https://github.com/kubernetes/kubernetes.github.io/issues/4602)
2017-08-03 13:08:15 -07:00
cliffburdick ec0c650e6a Fixed apostrophe 2017-08-02 14:06:20 -07:00
Andrew Chen 97b86a6fba Merge branch 'master' into 4549-complete-sentence 2017-08-01 22:55:07 -07:00
Andrew Chen d4893d4fe6 bump up final notes to h2 2017-08-01 22:42:55 -07:00
Andrew Chen 7febf3e780 add template tags 2017-08-01 22:37:46 -07:00
zacharysarah 2f5370e0a7 Fixed an awkward sentence 2017-08-01 15:45:18 -07:00
zacharysarah b80cebf70b Fixed broken link, consistent style usage 2017-08-01 15:38:20 -07:00
zacharysarah 700bb5564b Add task template 2017-08-01 15:34:50 -07:00
Luke Heidecke abd60bc4be Fix use of on-premises terminology (#4413)
* Fix use of on-premises terminology

* Update ingress doc with on-premises term
2017-08-01 15:10:37 -07:00
WanLinghao 4d9320bb40 yaml file errors on scheduling-gpus.md (#4436)
* Update scheduling-gpus.md

* Update scheduling-gpus.md
2017-08-01 14:33:04 -07:00
zacharysarah a4003ad766 Completed sentence, applied style guide to section 2017-08-01 13:38:15 -07:00
Cody Clark bb47b3f43f Example for sig-docs meeting (#4571) 2017-08-01 11:41:33 -07:00
Ianeta Hutchinson 9af54c7c5a Applying template to Namespaces topic and moving to Tasks. (#2925)
* Applying template to Namespaces topic and moving to Tasks.

* update links
2017-08-01 02:34:55 -07:00
Andrew Chen 72508c26fe Reimplement PR #4339 2017-08-01 02:23:13 -07:00
Andrew Chen 6ec54a096e Reimplement PR #4545 2017-08-01 02:09:29 -07:00
Andrew Chen ff1432531c Reimplement PR #3981 2017-08-01 01:54:43 -07:00
xufei 6549a0b34a docs: Fix sentence begins with an uppercase letter (#4556) 2017-08-01 01:31:55 -07:00
Xing Zhou d9e099b7af Turn env variables to upper case in the example.
As K8s won't change the env variable from configmap(using envFrom
to upper case, so change the variable names to upper case in the
example.
2017-08-01 01:17:24 -07:00
Matthew Dorn 52b8d44683 use raw github url for ip-masq-agent.yaml 2017-08-01 01:12:22 -07:00
sudr 2170ffbc76 Update install-kubectl.md to include instructions for kubectl auto-completion in oh-my-zsh (#4370)
* Update install-kubectl.md

* Move Oh-My-Zsh and edit

* add "the"
2017-08-01 00:52:12 -07:00
Fabian Deutsch 9e74703ad1 docs: Fix link in horizontal-pod-autoscale to #support-for-custom-metrics 2017-08-01 00:36:28 -07:00
Dino Hensen 8ff2710305 Fix indent and use valid keys for configMapKeyRef (#4428)
Fix restartPolicy indent.
Use valid keys from the ConfigMap in the step previous to the last special-config creation. Key special.type was not created anywhere in previous steps anywars.
2017-08-01 00:25:26 -07:00
Vijay Dhama 90bc317621 Fixed application troubleshooting guide link (#4441) 2017-08-01 00:19:45 -07:00
Eric Mountain @ Amadeus 2934358f13 Minor fix in example resource limit policy
Looks like 

```
the cluster operator may want to set limits that a pod must consume at least 20% of the memory and CPU
```

was meant to be 

```
the cluster operator may want to set limits that a pod must consume no more than 20% of the memory and CPU
```
2017-07-31 23:58:34 -07:00
Mik Vyatskov 6f42c332ec Fix a small bug in the Stackdriver Logging documentation (#4453) 2017-07-31 23:56:15 -07:00
Andrew Chen d40b245c9b Fix Kuberentes typo 2017-07-31 23:45:38 -07:00
JENNIFER RONDEAU d32de1bedb add links about ports and firewalls 2017-07-31 16:38:48 -07:00
Jennifer Rondeau 3a37833823 fix broken link to concepts topic (#4471)
* rebase and resolve merge conflict

* fix whitespace error
2017-07-31 16:37:40 -07:00
Andrew Chen 0e500aa7d7 Reimplement #4541 2017-07-31 16:26:37 -07:00
Andrew Chen 2e257d9707 Changes for move to Netlify (#4464)
* disable jekyll-redirect-from gem

* add _redirects file

* disable 404 redirect script

* add 301 redirect to test

* retain _redirects file

* Convert redirect_from's to _redirect file. (#4409)

* Remove redirect_from's. (#4424)

* Add 301's to _redirects. (#4427)

* add whitespace before 301

* move redirects in /js/redirects/js to _redirects

* add disabled option for cn redirect

* convert include to array in _config.yml

* enable redirects.js script for legacy support
2017-07-28 08:23:11 -07:00
Adam Schepis eedaff61ee Fix spelling error (#4528)
Fix misspelling of rabbitmq in coarse parallel processing example
2017-07-27 16:51:16 -07:00
steveperry-53 f9ac865c5f In links to ref pages, use {{page.version}}. 2017-07-27 15:23:25 -07:00
Ahmet Alp Balkan 28f3cfdd4f Update backlinks to client libraries page
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-07-27 14:42:20 -07:00
Xiaoyu Zhang 2d4111833c update version No. to para. (#4442)
update version No. to para.
2017-07-27 14:37:55 -07:00
Saksham Sharma 63167903a5 Change deprecated `kubectl update` to `replace` (#4307) 2017-07-27 14:36:59 -07:00
Robert Rati 606caa3d7b Add docs for running cloud-controller-manager with persistent volume labeling 2017-07-27 14:07:03 -07:00
Xiaoyu Zhang cdb9af84b4 Delete redundant "see" (#4466)
Delete redundant "see"
2017-07-27 12:08:54 -07:00
Howie Benefiel bd916fbd76 Fix name of ConfigMap in example (#4379)
The docs tell the reader to get a ConfigMap with the name `game-config-2`, but only one ConfigMap had been made in the documentation thusfar, `game-config`. This PR simply changes the name of that ConfigMap to the only existing ConfigMap if the reader follows the docs.
2017-07-25 14:01:35 -07:00
Xiaoyu Zhang ba0172468d update links for afely-drain-node.md (#4373)
update links for afely-drain-node.md
2017-07-25 08:17:50 -07:00
Kevin Kirsche 09c94a963f Fix Secrets Syntax in Volume Spec (#4378)
Fix #4377
2017-07-17 23:00:48 -07:00
Clenimar Filemon dbeade20c0 Fix gcloud docker push command (#4058)
Use `gcloud docker -- push` instead of `gcloud docker push`.
2017-07-14 11:44:43 -07:00
Jonathan Boulle 78a54dd02a security-context: fix typo (seacomp -> seccomp) 2017-07-11 15:51:14 +02:00
Ahmet Alp Balkan c58aeecc9c Fix what's next links for networkpolicy guides
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-07-10 15:24:39 -07:00
Ahmet Alp Balkan 0667180dd4 Remove self-links with domain names in docs (#4299)
* Remove self-links with domain names in docs

Fixes #4191. Skipping the tutorials we import from kubernetes/examples.

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>

* update federation/index.md user-guide links

* update assign-pod-node.md links

* update dns-pod-service.md link

* update link in jobs-run-to-completion.md

* update link in minikube.md

* update PS link in minikube.md

* update links in stackpoint.md

* update links in storage.md

* fix link in vsphere.md

* fix links in deprecation-policy.md

* Update pick-right-solution.md

* Update web-ui-dashboard.md

* Update ingress.md

* Update federation-service-discovery.md

* Update user-guide.md

* Update expose-external-ip-address.md

* Update README.md

* Update README.md
2017-07-10 15:13:19 -07:00
Brandon Philips 63564ba428 configure-aggregation-layer: remove proxy note
The referenced doc doesn't mention "kube-proxy" anywhere and I don't think this is a general best-practice in many environments. And even if it is the opinion doesn't help users.
2017-07-10 14:03:39 -07:00
Cao Shufeng c36769337d fix nine 404 page in doc
I wrote a crawl to fetch all invalid herf in website: https://kubernetes.io/docs/
Fix nine of them first.
I will fix others if there are.
2017-07-08 19:02:19 +08:00
Xiaoyu Zhang e338c8c874 use page.version to replace authenticate-across-clusters-kubeconfig.md
use page.version to replace authenticate-across-clusters-kubeconfig.md
2017-07-08 05:43:45 +08:00
xiangpengzhao 12d834d8bc Downward API supports pod's UID 2017-07-05 13:24:01 -07:00
Lucas Käldström 5f52c69f9a
Update some wording on kubeadm upgrades 2017-07-05 21:59:14 +03:00
Cao Shufeng 06bd423401 fix 404 page of invalid herf
This error is caused in pr #4259.
It's my fault.
2017-07-05 10:23:59 -07:00
Cao Shufeng 58d9c1399f some nits for advanced audit document 2017-07-03 20:31:16 +08:00
Andrew Chen b67e532138 Reimplement edits (#4249)
* Reimplement PR #3920

* Reimplement PR #3976

* Reimplement PR #4055 and #4128

* Reimplement PR #4146

* Reimplemented PR #4163
2017-07-01 12:34:12 -07:00
Timo Reimann b16949794b Update link to node condition.
The anchor changed from `#node-condition` to `#node`.

We also switch to the redirected base path.
2017-07-01 11:19:49 -07:00
Ryan ad557aad1c Remove extra storageClassName
The second empty declaration for storageClassName overwrites the first.
2017-07-01 11:18:25 -07:00
Eric Tune 7ecccf44f9 Un-block-quote an unordered list 2017-07-01 11:17:15 -07:00
Andrew Chen e5238e8a92 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Fix a couple of typos in tasks/debug-application-cluster/audit.md
  Add an explanation of how the kubeadm kubelet dropin file works and a note about cAdvisor
  All files for both new case study pages (#4235)
  Add empty layout template
2017-06-30 17:58:32 -07:00
Andrew Chen d99ba502ae Merge pull request #4239 from CaoShuFeng/invalid_audit_example
Use the new right link for audit policy example
2017-06-30 17:57:19 -07:00
Matt Moyer ea504e9353 Fix a couple of typos in tasks/debug-application-cluster/audit.md 2017-06-30 09:27:05 -05:00
Cao Shufeng 2ea2b8a24c Use the new right link for audit policy example
v1.7.0-rc.1 tag doesn't contain this pr:
https://github.com/kubernetes/kubernetes/pull/48086
so, it's a wrong example for users.
Uese the new v1.7.0 tag instead.
2017-06-30 13:40:04 +08:00
zhangchaolei aae3bfaf3e Release 1.7 (#4094)
* Minor fixes in the Deployment doc

Signed-off-by: Michail Kargakis <mkargaki@redhat.com>

* add NodeRestriction to admission-controllers (#3842)

* Admins Can Configure Zones in Storage Class

The PR #38505 (https://github.com/kubernetes/kubernetes/pull/38505) added zones optional parameter to Storage Class for AWS and GCE provisioners.

That's why documentation needs to be updated accordingly.

* document custom resource definitions

* add host paths to psp (#3971)

* add host paths to psp

* add italics

* Update ConfigMap doc to explain TTL-based cache updates (#3989)

* Update ConfigMap doc to explain TTL-based cache updates

* swap word order

Change "When a ConfigMap being already consumed..." to "When a ConfigMap already being consumed..."

* Update NetworkPolicy docs for v1

* StorageOS Volume plugin

* Update GPU docs

* docs: HPA autoscaling/v2alpha1 status conditions

This commit documents the new status conditions feature for HPA
autoscaling/v2alpha1.  It demonstrates how to get the status conditions
using `kubectl describe`, and how to interpret them.

* Update description about NodeRestriction

kubelet node can alse create mirror pods for their own static pods.

* adding storage as a supported resource to node allocatable

Signed-off-by: Vishnu kannan <vishnuk@google.com>

* Add documentation for podpreset opt-out annotation

This adds the annotation for having the podpreset admission controller
to skip (opt-out) manipulating the pod spec.

Also, the annotation format for what presets have acted on a pod has
been modified to add a prefix of "podpreset-". The new naming makes it such
that there is no chance of collision with the newly introduced opt-out
annotation (or future ones yet to be added).

Opt-out annotation PR:
kubernetes/kubernetes#44965

* Update PDB documentation to explain new field (#3885)

* update-docs-pdb

* Addressed erictune@'s comments

* Fix title and add a TOC to the logging concept page

* Patch #4118 for typos

* Describe setting coredns server in nameserver resolv chain

* Address comments in PR #3997.

Comment is in
f6eb59c67e (diff-7a14981f3dd8eb203f897ce6c11d9828)

* Update task for DaemonSet history and rollback (#4098)

* Update task for DaemonSet history and rollback

Also remove mentions of templateGeneration field because it's deprecated

* Address comments

* removed lt and gt as operators (#4152)

* removed lt and gt as operators

* replace lt and gt for node-affinfity

* updated based on bsalamat review

* Initial draft of upgrade guide for kubeadm clusters.

In-place upgrades are supported between 1.6 and 1.7 releases. Rollback
instructions to come in a separate commit.

Fixes https://github.com/kubernetes/kubeadm/issues/278

* Add local volume documentation (#4050)

* Add local volume documentation

* Add PV local volume example

* Patch PR #3999

* Add documentation for Stackdriver event exporter

* Add documentation about controller metrics

* Federation: Add task for setting up placement policies (#4075)

* Add task for setting up placement policies

* Update version of management sidecar in policy engine deployment

* Address @nikhiljindal's comments

- Lower case filenames
- Comments in policy
- Typo fixes
- Removed type LoadBalancer from OPA Service

* Add example that sets cluster selector

Per-@nikhiljindal's suggestion

* Fix wording and templating per @chenopis

* PodDisruptionBudget documentation Improvements (#4140)

* Changes from #3885

Title: Update PDB documentation to explain new field
Author: foxish

* Added Placeholder Disruptions Concept Guide

New file: docs/concepts/workloads/pods/disruptions.md
Intented contents: concept for Pod Disruption Budget,
 cross reference to Eviction and Preemption docs.
Linked from: concepts > workloads > pods

* Added placeholder Configuring PDB Task

New file: docs/tasks/run-application/configure-pdb.md
Intented contents: task for writing a Pod Disruption Budget.
Linked from: tasks > configuring-applications > configure pdb.

* Add refs to the "drain a node" task.

* Refactor PDB docs.

Move the "Requesting an eviction" section from:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md
-- which is going away -- to:
docs/tasks/administer-cluster/safely-drain-node.md

The move is verbatim, except for an introductory sentence.

Also added assignees.

* Refactor of PDB docs

Moved the section:
Specifying a PodDisruptionBudget
from:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md
to:
docs/tasks/run-application/configure-pdb.md
because that former file is going away.
Move is verbatim.

* Explain how Eviction tools should handle failures

* Refactor PDB docs

Move text from:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md
to:
docs/concepts/workloads/pods/disruptions.md

Delete the now empty:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md

Added a redirects_from section to the new doc, containing the path
of the now-deleted doc, plus all the redirects from the deleted
doc.

* Expand PDB Concept guide

Building on a little content from the old task,
greatly expanded the Disruptions concept
guide, including an abstract example.

* Update creating a pdb Task.

* Address review comments.

* Fixed for all cody-clark's review comments

* Address review comments from mml

* Address review comments from maisem

* Fix missing backtick

* Api and Kubectl reference docs updates for 1.7 (#4193)

* Fix includes groups

* Generated kubectl docs for 1.7

* Generated references docs for 1.7 api

* Document node authorization mode

* API Aggregator (#4173)

* API Aggregator

* Additional bullet points

* incorporated feedback for apiserver-aggregation.md

* split setup-api-aggregator.md into two docs and address feedback

* fix link

* addressed docs feedback

* incorporate feedback

* integrate feedback

* Add documentation for DNS stub domains (#4063)

* Add documentation for DNS stub domains

* add additional prereq

* fix image path

* review feedback

* minor grammar and style nits

* documentation for using hostAliases to manage hosts file (#4080)

* documentation for using hostAliases to manage hosts file

* add to table of contents

* review comments

* update the right command to see hosts file

* reformat doc based on suggestion and change some wording

* Fix typo for #4080

* Patch PR #4063

* Fix wording in placement policy task introduction

* Add update to statefulset concepts and basic tutorial (#4174)

* Add update to statefulset concpets and basic tutorial

* Address tech comments.

* Update ESIPP docs for new added API fields

* Custom resource docs

* update audit document with advanced audit features added in 1.7

* kubeadm v1.7 documentation updates (#4018)

* v1.7 updates for kubeadm

* Address review comments

* Address Luke's comments

* Encrypting secrets at rest and cluster security guide

* Edits for Custom DNS Documentation (#4207)

* reorganize custom dns doc

* format fixes

* Update version numbers to 1.7

* Patch PR #4140 (#4215)

* Patch PR #4140

* fix link and typos

* Update PR template

* Update TLS bootstrapping with 1.7 features

This includes documenting the new CSR approver built into the
controller manager and the kubelet alpha features for certificate
rotation.

Since the CSR approver changed over the 1.7 release cycle we need
to call out the migration steps for those using the alpha feature.
This document as a whole could probably use some updates, but the
main focus of this PR is just to get these features minimally
documented before the release.

* Federated ClusterSelector

formatting updates from review

* complete PR #4181 (#4223)

* complete PR #4181

* fix security link

* Extensible admission controller (#4092)

* extensible-admission-controllers

* Update extensible-admission-controllers.md

* more on initializers

* fixes

* Expand external admission webhooks documentation

* wrap at 80 chars

* more

* add reference

* Use correct apigroup for network policy

* Docs changes to PR #4092 (#4224)

* Docs changes to PR #4092

* address feedback

* add doc for --as-group in cli

Add doc for this pr:
https://github.com/kubernetes/kubernetes/pull/43696
2017-06-29 22:39:40 -07:00
Ahmet Alp Balkan 1f6a98d134
Use correct apigroup for NetworkPolicy
Follow-up to #4225. networking -> networking.k8s.io.

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-06-29 21:49:53 -07:00
Andrew Chen b40d09fe77 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Update links to proper repos

# Conflicts:
#	docs/admin/kubeadm.md
#	docs/concepts/overview/kubernetes-api.md
#	docs/reference/api-overview.md
#	docs/setup/independent/create-cluster-kubeadm.md
#	docs/tasks/administer-cluster/configure-pod-disruption-budget.md
2017-06-28 22:29:21 -07:00
Christoph Blecker 2e192598a0 Update links to proper repos 2017-06-28 22:08:36 -07:00
Andrew Chen b9593e8e1d Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Add no_proxy settings to use minikube and kubectl (#4108)
  Fix installing autocompletion documentation (#4189)
  Set storageClassName to match earlier manual disk creation
2017-06-28 16:39:36 -07:00
Andrew Chen 7df02064bd complete PR #4181 (#4223)
* complete PR #4181

* fix security link
2017-06-28 16:37:32 -07:00
emaildanwilson ad48f6720f Federated ClusterSelector
formatting updates from review
2017-06-28 13:29:07 -07:00
Bastian Klein 00df48fb9c Fix installing autocompletion documentation (#4189)
* Fix installing autocompletion documentation

The written solution did not work for me with the error `-bash: __git_ps1: command not found`. Since the auto-completion is already installed you can simply add the Kubernetes autocompletion to it.

* Remove sourcing bash-completion in .bash_profile
2017-06-28 11:49:52 -07:00
Andrew Chen 7b069cf1d5 Merge pull request #4181 from smarterclayton/secrets
Encrypting secrets at rest and cluster security guide
2017-06-28 10:02:31 -07:00
Chainarong Tangsurakit c6d4695cb8 Set storageClassName to match earlier manual disk creation
https://github.com/kubernetes/kubernetes.github.io/issues/4218
2017-06-28 14:02:28 +07:00
Andrew Chen 7b5394e725 Patch PR #4140 (#4215)
* Patch PR #4140

* fix link and typos
2017-06-27 21:42:07 -07:00
Andrew Chen 7d9ceddf7b Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  outdate link (#4199)
2017-06-27 21:10:46 -07:00
jianglingxia 68b4abc1f4 outdate link (#4199)
* outdate link

* resubmit the outdate link
2017-06-27 21:08:02 -07:00
Andrew Chen a424a4785b Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Removed -fs from troubleshooting command (#4177)
2017-06-27 16:48:26 -07:00
Zachary Corleissen 37311bc0d8 Removed -fs from troubleshooting command (#4177)
* Removed -fs from troubleshooting command

* Add YAML file for configmaps in concepts

* Add new topic for configmaps in concepts

* Add configuration entry for understanding configmaps

* Move Understanding Configmaps to a separate concept file

* Revert "Move Understanding Configmaps to a separate concept file"

This reverts commit 71bd80d7bc.

* Revert "Add configuration entry for understanding configmaps"

This reverts commit c27fc13f56.

* Revert "Add new topic for configmaps in concepts"

This reverts commit 3d535f5917.

* Revert "Add YAML file for configmaps in concepts"

This reverts commit 8ecabd6d10.
2017-06-27 16:41:01 -07:00
Jessica Yao a18484cad2 Edits for Custom DNS Documentation (#4207)
* reorganize custom dns doc

* format fixes
2017-06-27 16:26:46 -07:00
Clayton Coleman f8f3ec1ca4
Encrypting secrets at rest and cluster security guide 2017-06-27 15:41:39 -04:00
Andrew Chen 7152ca37f8 Merge pull request #4101 from ericchiang/advanced-audit-logging
update audit document with advanced audit features added in 1.7
2017-06-27 11:37:18 -07:00
Eric Chiang 3ea952f04c update audit document with advanced audit features added in 1.7 2017-06-27 11:11:02 -07:00
Anthony Yeh 171a5aeddf Custom resource docs 2017-06-27 10:27:51 -07:00
Andrew Chen d8f5b4f8a4 Merge pull request #4093 from MrHohn/release-1.7-esipp-ga
Update ESIPP documentation to reflect new fields
2017-06-27 10:24:19 -07:00
Zihong Zheng 48caf205e9 Update ESIPP docs for new added API fields 2017-06-27 10:03:13 -07:00
Andrew Chen 55d63bb3ea Merge pull request #4204 from tsandall/patch-1
Fix wording in placement policy task introduction
2017-06-27 09:48:19 -07:00
Torin Sandall 34dfba7d56 Fix wording in placement policy task introduction 2017-06-27 09:42:19 -07:00
Andrew Chen 8df3312cdc Patch PR #4063 2017-06-27 09:33:50 -07:00
Andrew Chen a3b46cfcdf Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Replace remaining kargo usages to kubespray
  update example templates
  redirect fix for meanstack article
2017-06-27 09:23:04 -07:00
Bowei Du c3ebbbe00f Add documentation for DNS stub domains (#4063)
* Add documentation for DNS stub domains

* add additional prereq

* fix image path

* review feedback

* minor grammar and style nits
2017-06-27 00:38:14 -07:00
Andrew Chen 025f2faff4 API Aggregator (#4173)
* API Aggregator

* Additional bullet points

* incorporated feedback for apiserver-aggregation.md

* split setup-api-aggregator.md into two docs and address feedback

* fix link

* addressed docs feedback

* incorporate feedback

* integrate feedback
2017-06-27 00:22:47 -07:00
Andrew Chen 4d3a7a315d update example templates 2017-06-26 16:12:21 -07:00
Eric Tune 4ff5587583 PodDisruptionBudget documentation Improvements (#4140)
* Changes from #3885

Title: Update PDB documentation to explain new field
Author: foxish

* Added Placeholder Disruptions Concept Guide

New file: docs/concepts/workloads/pods/disruptions.md
Intented contents: concept for Pod Disruption Budget,
 cross reference to Eviction and Preemption docs.
Linked from: concepts > workloads > pods

* Added placeholder Configuring PDB Task

New file: docs/tasks/run-application/configure-pdb.md
Intented contents: task for writing a Pod Disruption Budget.
Linked from: tasks > configuring-applications > configure pdb.

* Add refs to the "drain a node" task.

* Refactor PDB docs.

Move the "Requesting an eviction" section from:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md
-- which is going away -- to:
docs/tasks/administer-cluster/safely-drain-node.md

The move is verbatim, except for an introductory sentence.

Also added assignees.

* Refactor of PDB docs

Moved the section:
Specifying a PodDisruptionBudget
from:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md
to:
docs/tasks/run-application/configure-pdb.md
because that former file is going away.
Move is verbatim.

* Explain how Eviction tools should handle failures

* Refactor PDB docs

Move text from:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md
to:
docs/concepts/workloads/pods/disruptions.md

Delete the now empty:
docs/tasks/administer-cluster/configure-pod-disruption-budget.md

Added a redirects_from section to the new doc, containing the path
of the now-deleted doc, plus all the redirects from the deleted
doc.

* Expand PDB Concept guide

Building on a little content from the old task,
greatly expanded the Disruptions concept
guide, including an abstract example.

* Update creating a pdb Task.

* Address review comments.

* Fixed for all cody-clark's review comments

* Address review comments from mml

* Address review comments from maisem

* Fix missing backtick
2017-06-26 13:54:25 -07:00
Torin Sandall 5825ea1af0 Federation: Add task for setting up placement policies (#4075)
* Add task for setting up placement policies

* Update version of management sidecar in policy engine deployment

* Address @nikhiljindal's comments

- Lower case filenames
- Comments in policy
- Typo fixes
- Removed type LoadBalancer from OPA Service

* Add example that sets cluster selector

Per-@nikhiljindal's suggestion

* Fix wording and templating per @chenopis
2017-06-26 11:13:43 -07:00
Andrew Chen fbbd8922a4 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Document kubeadm KUBELET_DNS_ARGS issue
  CronJobs aren't enabled in 1.6 by default
  Fix typo
  Document pod-template-hash label
  Rename last remaining reference of kargo to kubespray
2017-06-26 10:58:27 -07:00
Andrew Chen c2bc54a4db Merge pull request #4155 from crassirostris/add-event-exporter-doc-page
Add documentation for Stackdriver event exporter
2017-06-26 08:45:47 -07:00
Hans Kristian Flaatten 9794339d2a Rename last remaining reference of kargo to kubespray 2017-06-25 22:46:02 +02:00
Andrew Chen b5eb6b6b85 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Add documentation for ip-masq-agent.
  Update installation instructions with snap (#4171)
  Update scratch.md: include download binary tarball (#3933)
  Typo in authentication.md
2017-06-23 11:58:31 -07:00
Mikhail Vyatskov 4c219641f0 Add documentation for Stackdriver event exporter 2017-06-23 11:31:18 +02:00
Daniel Nardo 79eca9b815 Add documentation for ip-masq-agent. 2017-06-23 01:29:35 -07:00
Ihor Dvoretskyi 24820772e5 Update installation instructions with snap (#4171)
* Update installation instructions with snap

Update installation instructions with snap - the package manager for Ubuntu and other Linux distributions.

* fix md formatting

* fix shell formating

* fix shell block

* fix shell for Check the kubectl configuration

* switch to full width shell
2017-06-23 01:22:08 -07:00
Andrew Chen 7d4f4b1402 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Fix broken links to client samples. (#4139)
2017-06-23 00:39:11 -07:00
jlewi e74ec1f2a9 Fix broken links to client samples. (#4139)
* Remove code snippets since they will just get out of sync with the samples.
2017-06-22 17:57:17 -07:00
Andrew Chen 5bd740ef7e Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Edits for clarity, concision, style, formatting, (#4160)
2017-06-22 15:43:48 -07:00
cody-clark e32c0aea6e Edits for clarity, concision, style, formatting, (#4160)
and according to the getting started project.
2017-06-22 15:23:27 -07:00
Andrew Chen 2ce3742278 Patch PR #3999 2017-06-22 15:19:48 -07:00
Andrew Chen 38812baf2a Merge pull request #3999 from pipejakob/kubeadm-upgrades
Initial draft of upgrade guide for kubeadm clusters.
2017-06-22 15:08:45 -07:00
Jacob Beacham 5946f21e99 Initial draft of upgrade guide for kubeadm clusters.
In-place upgrades are supported between 1.6 and 1.7 releases. Rollback
instructions to come in a separate commit.

Fixes https://github.com/kubernetes/kubeadm/issues/278
2017-06-22 14:45:06 -07:00
Andrew Chen 6b3c84602d Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  whatisk8s - Chinese version (#3243)
  split rows and nest to stack columns (#4129)
  Updates to docs/admin/kubelet-tls-bootstrapping (#3617)
  Replace "Pod Injection Policy" with "Pod Preset" (#3667)
  Change example PersistentVolumeClaim
  add PodNodeSelector to admission-controllers (#3691)
  Get pods using a label selector instead of hardcoded indexes. Use JsonPath instead of go-template.
  correct_init_container_state (#3972)
  kubernetes.github.io/docs/tasks/administer-cluster: operating etcd clusters
  Remove --no-check-certificate flag in bare_metal_offline.md
2017-06-22 14:43:14 -07:00
Nail Islamov 6283e51faa Replace "Pod Injection Policy" with "Pod Preset" (#3667)
* Replace "Pod Injection Policy" with "Pod Preset"

There are some leftovers of the old term, fixing it.

* Extra typos fix, line breaks
2017-06-22 14:21:14 -07:00
Remi Rampin 1984b52e7a Change example PersistentVolumeClaim
If a default storage class exists, it is going to create a new persistent volume to bind to that claim instead of using our example one, which will make the tutorial fail. In particular, this happens on minikube.

Specifying an empty storageClassName will prevent the storage class to be used, and force our volume to be selected.
2017-06-22 14:20:27 -07:00
Radhika Puthiyetath a5a898347a kubernetes.github.io/docs/tasks/administer-cluster: operating etcd clusters 2017-06-22 14:07:53 -07:00
Andrew Chen f4dcee7526 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  networkpolicies.md --> network-policies.md for SEO
  Added link (#4161)
  Use "sudo -i" instead of "sudo su -"
  Create a section for kubeadm topics
  Consolidate SecurityContext topics. (#4005)
  Typo fix in "Adding ConfigMap data to a Volume" section (#3966)
2017-06-22 10:57:56 -07:00
Janet Kuo 9f6d8f4788 Update task for DaemonSet history and rollback (#4098)
* Update task for DaemonSet history and rollback

Also remove mentions of templateGeneration field because it's deprecated

* Address comments
2017-06-22 10:56:52 -07:00
Ahmet Alp Balkan e883a27f3b networkpolicies.md --> network-policies.md for SEO
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-06-22 10:47:34 -07:00
cody-clark 71ed960d75 Added link (#4161) 2017-06-22 10:37:05 -07:00
Andrew Chen b6cc04ed74 Merge pull request #4116 from feiskyer/gpu
Update GPU docs
2017-06-22 10:35:56 -07:00
Steve Perry 9da5890274 Consolidate SecurityContext topics. (#4005) 2017-06-21 18:12:44 -07:00
Mitsuhiro Tanino 0c6b381b7c Typo fix in "Adding ConfigMap data to a Volume" section (#3966) 2017-06-21 16:56:38 -07:00
Madhusudan.C.S 553cf9ff8b Address comments in PR #3997.
Comment is in
f6eb59c67e (diff-7a14981f3dd8eb203f897ce6c11d9828)
2017-06-21 16:39:29 -07:00
shashidharatd 4ed792d343 Describe setting coredns server in nameserver resolv chain 2017-06-21 15:58:32 -07:00
Andrew Chen 692d9a42b4 Patch #4118 for typos 2017-06-21 14:50:54 -07:00
Andrew Chen 0ac6a9546a Merge pull request #4118 from DirectXMan12/feature/hpa-status-conditions
HPA autoscaling/v2alpha1 status conditions
2017-06-21 14:46:47 -07:00
Andrew Chen c8f3f8f19f Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  bump openstack cli tools versions to working values
  fix header size for sub-sections under Services
  Finish #4036
  Be more specific about cpu-shares passed to Docker (#4016)
  Clarify the required uniqueness of Label Key
  Add --show-all to documentation
  docs(service): remove invalid `,` from example
  Add  "remove" example for kubectl patch (#4042)
  Fix wrong link to create a ConfigMap
  Fix a typo in the High Availability docs (#4048)
  Remove ports from ExternalName Service example
  remove extra that
  update kops installation instructions
2017-06-21 14:43:13 -07:00
Anirudh Ramanathan 09bf855b76 Update PDB documentation to explain new field (#3885)
* update-docs-pdb

* Addressed erictune@'s comments
2017-06-20 16:33:44 -07:00
Andrew Chen e0ad6ebf6b Merge pull request #4145 from vishh/document-storage-allocatable
Adding storage as a supported resource to node allocatable
2017-06-20 16:18:53 -07:00
Tommy Falgout fb2ba2d962 Add --show-all to documentation
`kubectl get pods -l jobgroup=jobexample --show-all -o name`
will not show the completed jobs.  This caught me when running through the steps myself.
2017-06-20 15:56:50 -07:00
Tomas Pizarro 63687c5ace Fix wrong link to create a ConfigMap 2017-06-20 15:30:03 -07:00
Andrew Chen 91ecf67ad4 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  fixes typos and corrects links in the minikube guide (#4051)
  Use native patch functionality instead of JQ
  add the introduce of using wildcard '*' in nonResourceURL
  Rephrase doc about Deployment .spec.rollbackTo field
  create-cluster-kubeadm: add ToC using task template
  install-kubeadm: fix What's Next link text
2017-06-20 14:23:19 -07:00
Jeff Peeler c1c6faf59b Add documentation for podpreset opt-out annotation
This adds the annotation for having the podpreset admission controller
to skip (opt-out) manipulating the pod spec.

Also, the annotation format for what presets have acted on a pod has
been modified to add a prefix of "podpreset-". The new naming makes it such
that there is no chance of collision with the newly introduced opt-out
annotation (or future ones yet to be added).

Opt-out annotation PR:
kubernetes/kubernetes#44965
2017-06-20 14:10:34 -07:00
Elliot Anderson 6ce8d8e475 Use native patch functionality instead of JQ 2017-06-20 13:48:44 -07:00
Vishnu kannan 33a3638d5b adding storage as a supported resource to node allocatable
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2017-06-20 13:21:28 -07:00
Andrew Chen bea52c8e5c Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  info about cron jobs updated (#4110)
  fix example in configure-pod-configmap.md
  Remove extraneous files from autogeneration of ref pages. (#4044)
  Add notes for file/flag precedence
  Removed "networked" from PersistentVolume (PV) definition. (#4121)
  Fix syntax err in example
2017-06-20 10:52:58 -07:00
Charlie R.C a9863612bc fix example in configure-pod-configmap.md 2017-06-20 10:26:55 -07:00
Andrew Chen 628e88ecc6 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Fix typo 'bash' -> 'brew'
  update pod persistent volume example storage class (#3979)
  Change Task titles to imperative: Admin. (#4033)
  Change Task titles to imperative: Daemons, GPUs. (#4032)
  Change Task titles to imperative: Federation. (#4031)
  Change Task titles to imperative: TLS. (#4030)
  Change Task titles to imperative: Access Extend. (#4029)
  Change Task titles to imperative: Monitor. (#4028)
  Change Task titles to imperative: Access Apps. (#4027)
  Change Task title to imperative: Run Job. (#4026)
  Change Task titles to imperative: Run Apps. (#4025)
  Change Task titles to imperative: Inject. (#4024)
  Change Task titles to imperative: Tools. (#4023)
  Change Task titles to imperative. (#4022)
  Fix typo in update-imported-docs.sh
  Add internal provisioner support matrix (#4009)

# Conflicts:
#	docs/tasks/administer-cluster/declare-network-policy.md
2017-06-19 10:15:52 -07:00
Joey Pereira 951a3211a3 Fix typo 'bash' -> 'brew' 2017-06-16 18:53:30 -04:00
Solly Ross 7023dc32c5 docs: HPA autoscaling/v2alpha1 status conditions
This commit documents the new status conditions feature for HPA
autoscaling/v2alpha1.  It demonstrates how to get the status conditions
using `kubectl describe`, and how to interpret them.
2017-06-16 14:30:51 -04:00
Pengfei Ni a0ffa2569c Update GPU docs 2017-06-16 21:15:28 +08:00
Adnan Abdulhussein 1088bca024 update pod persistent volume example storage class (#3979)
* update pod persistent volume example storage class

When binding to a manually created PersistentVolume, the claim must
disable dynamic provisioning by specifying an empty storage class.

Fixes #2803

* use specific storageclass

* revert gibibytes -> gigabytes change
2017-06-13 23:55:58 -07:00
Steve Perry e2a898ad41 Change Task titles to imperative: Admin. (#4033) 2017-06-08 15:13:29 -07:00
Steve Perry 6c99bbb509 Change Task titles to imperative: Daemons, GPUs. (#4032) 2017-06-08 14:48:46 -07:00
Steve Perry 54eb7d2449 Change Task titles to imperative: Federation. (#4031) 2017-06-08 14:42:56 -07:00
Steve Perry 2167367a6a Change Task titles to imperative: TLS. (#4030) 2017-06-08 14:34:34 -07:00
Steve Perry fbf7782ebf Change Task titles to imperative: Access Extend. (#4029) 2017-06-08 13:47:48 -07:00
Steve Perry 423884e8b7 Change Task titles to imperative: Monitor. (#4028) 2017-06-08 13:41:57 -07:00
Steve Perry c59b2b6935 Change Task titles to imperative: Access Apps. (#4027) 2017-06-08 13:29:52 -07:00
Steve Perry 10cd61bc62 Change Task titles to imperative: Run Apps. (#4025) 2017-06-08 13:15:43 -07:00
Steve Perry 962989b443 Change Task titles to imperative: Inject. (#4024) 2017-06-08 12:12:52 -07:00
Steve Perry e1e00561f3 Change Task titles to imperative: Tools. (#4023) 2017-06-08 11:58:27 -07:00
Steve Perry adf00a04a2 Change Task titles to imperative. (#4022) 2017-06-08 11:48:28 -07:00
Andrew Chen ccd2b46864 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  fixed the line giving the template for creating configmap, should include the word configmap as part of the creation process.
  Fixes issue #3939
  Add CRI runtime support
2017-06-07 10:23:36 -07:00
Alejandro Escobar ffc4769285 fixed the line giving the template for creating configmap, should include the word configmap as part of the creation process. 2017-06-07 10:22:26 -07:00
Dan Winship 4b6b970d51 Update NetworkPolicy docs for v1 2017-06-07 10:21:23 -07:00
Andrew Chen 23175c12e0 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Updaated install-kubeadm.md, removed redundant kubectl installation (#4006)
  Add Chocolatey Package Manager for Windows (#4000)
2017-06-07 09:56:43 -07:00
Onuralp Taner 783de986d9 Add Chocolatey Package Manager for Windows (#4000)
* Add Chocolatey Package Manager for Windows

* Small grammar changes
2017-06-06 13:17:33 -07:00
Andrew Chen be02ca1705 Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Make issue title automatically a link
  Update directions for macOS bash completion
2017-06-06 09:24:27 -07:00
Christoph Blecker 1bb02c055e
Update directions for macOS bash completion 2017-06-05 21:52:25 -07:00
Shyam JVS f21480504d Update ConfigMap doc to explain TTL-based cache updates (#3989)
* Update ConfigMap doc to explain TTL-based cache updates

* swap word order

Change "When a ConfigMap being already consumed..." to "When a ConfigMap already being consumed..."
2017-06-05 11:24:49 -07:00
Andrew Chen 36b472183b Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Remove self-referential link
  Add fibre channel volume explanation (#3967)
2017-06-05 10:41:54 -07:00
Ryan McGinnis 8117b56cc6 Remove self-referential link
The second link in the "What's next" section redirects the reader to this doc. This PR removes this link.
2017-06-02 15:01:05 -07:00
Andrew Chen 92e31296ff Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.7
* 'master' of https://github.com/kubernetes/kubernetes.github.io:
  Improve RBAC doc (#3951)
  Clarify CNI acronym
  Fix 404 to kubectl install link
  install-kubectl.md: Fix Windows texts, link to latest macOS binaries
2017-06-02 14:28:50 -07:00
deads2k 6cbd6bda67 document custom resource definitions 2017-06-02 13:12:02 -07:00
anatoly techtonik 12ad70a8ca install-kubectl.md: Fix Windows texts, link to latest macOS binaries
Fixes https://github.com/kubernetes/kubernetes.github.io/pull/3859#issuecomment-305710498
2017-06-02 10:32:19 +03:00
Kenny Lee Sin Cheong d41dbfcf14 Fix example in the "Adding ConfigMap data to a Volume" section
"special.key" does not exist in the given ConfigMap example. It should
be "special.level" instead.
2017-06-01 16:18:38 -07:00
Andrew Chen 8ad0302646 Implement PR #3859 with tabs 2017-06-01 10:08:51 -07:00
Kenny Lee Sin Cheong 5372429718 Fix typo in cluster api docs
Fix type in https://kubernetes.io/docs/tasks/administer-cluster/access-cluster-api/
2017-05-31 10:59:38 -07:00
jianglingxia 5483b4a126 change the service name to pod ip (#3926)
* change the service name to pod ip

* update the outdate link
2017-05-31 10:33:27 -07:00
Steve Perry 46e745a81a Prototype of custom description meta tags. (#3928)
* Prototype of custom description meta tags.

* Put desc on one line.
2017-05-27 14:38:24 -07:00
Luke Stutters 6f401ab0d2 Minor grammatical correction
If the Volume is created from the ConfigMap, the files in the Volume are representatives of the Config map, not the other way round.
2017-05-26 10:43:33 -07:00
Xiaoyu Zhang 295e262775 Fix some output
Fix some output
2017-05-26 10:41:06 -07:00
chenhuan12 1406756b8a replace REASON with STATUS
replace REASON with STATUS
2017-05-26 10:40:07 -07:00
Andrew Chen 7091925c9f Add drop-in templates 2017-05-24 14:48:20 -07:00
Christopher M. Luciano ae5df6944d Add GPU mountpath warning
The GPU path is not permissive by default and requires a bit of
additional setup if the operator does not allow for privileged
containers.

Related kubernetes/kubernetes#46007

Signed-off-by: Christopher M. Luciano <cmluciano@us.ibm.com>
2017-05-23 22:39:56 -07:00
Henrique Truta fbcc2e9fde Add cluster resource federation page
Adds a page in Federation resources list describing
clusters.
2017-05-23 22:37:34 -07:00
Josh Curl 50f2daa8d8 Fix indentation in ConfigMap usage example (#3867)
* Fix indentation in ConfigMap usage example

* Fix other example
2017-05-22 13:41:18 -07:00
Itamar Ostricher cd5e98a2dc Fix configMapRef indentation in envFrom clause
Fixes invalid YAML in example
2017-05-22 13:39:29 -07:00
Dan Winship a58afb2a2e Revert NetworkPolicy v1 docs (#3849)
* Revert "Update configure-namespace-isolation.md (#3758)"

This reverts commit a712b13a3b.

* Revert "Add Configure Namespace Isolation task"

This reverts commit f050c4cc57.

* Revert "Update networkpolicies.md (#3755)"

This reverts commit 15ca8f0b2f.

* Revert "Update NetworkPolicy docs for v1"

This reverts commit 3a158ecf29.
2017-05-22 11:54:57 -07:00
Jesse Seldess 3a8a465028 WTD: Projected volumes (#3856)
* Update projected volume task

- Rename file
- Build out steps
- Create separate yaml file for pod configuration
- Add new page to the sidenav

* Add projected volume type to volumes concept page
2017-05-22 10:57:42 -07:00
Steve Perry f58b3d11d9 Remove and redirect: user-guide/application-trouble. (#3855) 2017-05-19 13:02:31 -07:00
Steve Perry d4cbd968fd Remove and redirect: getting-started/...cloud-controller. (#3853) 2017-05-19 11:42:31 -07:00
Steve Perry 10434a0484 Remove and redirect: user-guide/application-introspection (#3848)
* Remove and redirect: user-guide/application-introspection

* Remove and redirect: user-guide/debugging-services.
2017-05-19 10:40:38 -07:00
Steve Perry a02a577082 Remove and redirect: admin/cluster-trouble. (#3839) 2017-05-18 22:29:20 -07:00
Steve Perry 4a6cd30b2a Remove and redirect: Debugging Pods and Replication Controllers. (#3837) 2017-05-18 19:03:19 -07:00
Steve Perry 76976b2976 Remove and redirect: prereqs. (#3836) 2017-05-18 18:55:14 -07:00
Steve Perry 18ccf43021 Update link: user-guide/application-troubleshooting. (#3834) 2017-05-18 18:16:31 -07:00
Andrew Chen 7e23e44038 Address Issue #3827: break out Configuring Redis using a ConfigMap tutorial (#3829)
* Address Issue #3827: break out Configuring Redis using a ConfigMap tutorial

* format tweaks
2017-05-18 13:56:29 -07:00
Brandon Philips 56ffe1644c *: don't apply -f from http endpoints!
k8s.io didn't always have https. But, now we do. We should fix this
immediately.
2017-05-17 20:15:28 -07:00
Brandon Philips 3b5bdc3f00 *: don't create -f from http endpoints!
k8s.io didn't always have https. But, now we do. We should fix this
immediatly.
2017-05-17 20:14:09 -07:00
Jodie Putrino 145f4e64c7 Write the Docs: add doc for using configmap data in pods (#3780)
* new doc - using configmaps in pods

* fix style violation - remove command prompt

* Update configure-pod-configmap.md

Fixed the endcapture tag
2017-05-16 10:00:16 -07:00
Kale Blankenship 79e0e594e6 Remove repeated words from configmap.md 2017-05-15 22:07:07 -07:00
Steve Perry 400bb5c8bb Move to Tasks: Core DNS Federation. (#3807) 2017-05-15 20:31:20 -07:00
Steve Perry f7c4466b22 Move to Tasks: Cluster Federation. (#3806) 2017-05-15 19:43:59 -07:00
Andrew Chen f27cc711cf Tweak formatting for PR #3763 2017-05-15 17:16:20 -07:00
Jared f940b709d9 access-clusters docs revamp (#3779)
* access-clusters docs revamp

Fix the accessing clusters docs, bring them into the right templates
and put them in the right parts of the site.

* Update proxies.md

* Update concepts.yml

* Update tasks.yml
2017-05-15 17:15:20 -07:00
isa-bel f5b1203f2b Write the Docs - Add task template to romana-network-policy (#3763)
* AddAdd task template for romana-network-policy

* Add whatsnext section
2017-05-15 17:04:12 -07:00
Andrew Chen e2a63e75c8 Tweak formatting for PR #3775 2017-05-15 16:58:25 -07:00
paulbattagliag 0acc7f3996 Update ingress.md 2017-05-15 16:56:17 -07:00
Isabel JC 0b26becd2b Add task template for weave-network-policy 2017-05-15 16:48:57 -07:00
Wendy Shaffer 40b2e12eba Update install-kubectl.md (#3760)
* Update install-kubectl.md

Write the Docs:
Added Task template to the document.
Edited for clarity.

* Update install-kubectl.md

Write the Docs. Responded to review feedback: https://github.com/kubernetes/kubernetes.github.io/pull/3760#pullrequestreview-38008755

* Update install-kubectl.md

Write the Docs. Seeing if this makes the bulleted list render correctly.

* Update install-kubectl.md

Write the Docs. Markdown really doesn't seem to like that bulleted list there, so we'll just do it in sentence flow.
2017-05-15 16:44:55 -07:00
Steve Perry 187d97f8ed Move to Injecting section: Environment Variables. (#3801) 2017-05-15 14:54:25 -07:00
Steve Perry 9cca278d3b Move to Tasks: Cross-cluster Service Discovery. (#3800) 2017-05-15 14:06:34 -07:00
Steve Perry e280122a44 Move to Tasks: Tools for Monitoring. (#3799) 2017-05-15 13:34:41 -07:00
Steve Perry 31c6a9b747 Move to Tasks: Auth Across Clusters. (#3794) 2017-05-15 11:50:59 -07:00
Steve Perry 225f1b775d Move to Tasks: Static Pods. (#3792) 2017-05-15 11:09:51 -07:00
Steve Perry 06c204a9f0 Move to Tasks: Cluster Management. (#3790) 2017-05-15 10:56:06 -07:00
Steve Perry ed8cf61f3f Move to Tasks: Access App Cluster. (#3789) 2017-05-15 10:21:26 -07:00
Pheo 9640624d8c edited create-external-load-balancer.md to conform to template (#3746)
* refactor to new template

* refactor to new template

* fixed a missed header resize

* removed TOC substitute
2017-05-14 15:31:11 -07:00
geraldinewhitt 2f0d13a2e0 WTD (#3757)
Edits from genwhitt in Portland at WTD conference. Apply template, copyedit, apply style guide.
2017-05-14 15:10:50 -07:00
paulbattagliag a712b13a3b Update configure-namespace-isolation.md (#3758)
* Update configure-namespace-isolation.md

* Update configure-namespace-isolation.md
2017-05-14 15:04:54 -07:00
isa-bel 0776f9d631 Docs - Calico NetworkPolicy (#3756)
* Add task template for calico-network-policy

* Add discussion section
2017-05-14 14:26:41 -07:00
Jodie Putrino b2c7a86bcb Write the Docs Writing day:
- edit /docs/tasks/configure-pod-container/configmap.md to use the task template
- move the Consuming ConfigMap in pods section to its own doc (coming in a separate PR)
2017-05-14 14:17:39 -07:00
Andrew Chen f050c4cc57 Add Configure Namespace Isolation task 2017-05-14 11:13:31 -07:00
Steve Perry 0ce3686712 Fix front matter. (#3740) 2017-05-13 21:06:30 -07:00
Steve Perry 697e0d3574 Move and consolidate etcd topics. (#3739) 2017-05-13 20:54:58 -07:00
Dan Winship a32d30c107 NetworkPolicy updates for v1 (#3721)
* NetworkPolicy clarifications

- For clarity, only use the word "policy" in reference to
  NetworkPolicies, not in reference to the isolation annotation.

- Drop a bunch of text related to the isolation annotation since
  there's only one interesting value so there's no reason to
  complicate things.

- Fix bad YAML indentation

- Misc rewording

* Update NetworkPolicy docs for v1
2017-05-11 13:26:32 -07:00
Kasper Bentsen d0b6757e6f Added missing close of function. 2017-05-11 11:26:11 -07:00
Sam Vilain 712dce6d82 Fix a broken link in "Installing Minikube"
Broken by kubernetes/minikube#1410
2017-05-11 11:25:20 -07:00
Mikhail Vasilenko 69c44a3996 typo fix 2017-05-11 11:24:07 -07:00
Steve Perry 0e7df470ee Hide token. (#3716) 2017-05-10 21:36:58 -07:00
Steve Perry 02c8689af5 New topic: Installing Minikube. (#3707)
* New topic: Installing Minikube.

* Refine.
2017-05-10 10:44:31 -07:00
Steve Perry 5d7bb8c7b2 Create Installing Tools section. (#3706) 2017-05-10 09:39:55 -07:00
Steve Perry 8be660ccd8 Move to Concepts: Admin Overview. (#3698)
* Move to Concepts: Admin Overview.

* Fix filename.
2017-05-09 13:32:48 -07:00
Steve Perry 59d9c2ec4f Net pol (#3696)
* Move to Admin section: Disruption.

* Move to Admin section: Net Policy.

* Add redirects.
2017-05-09 11:58:30 -07:00
Steve Perry ae991e8d60 Move to Admin section: Disruption. (#3695) 2017-05-09 10:42:16 -07:00
Steve Perry c0eb5e17ad Move to Tasks: Multiple chedulers. (#3694) 2017-05-09 10:08:26 -07:00
Steve Perry f953d98eab Move to Tasks: Guaranteed Scheduling. (#3689) 2017-05-08 22:40:29 -07:00
Steve Perry 3a4a75bb53 Move to Admin section: CPU and Mem Limits. (#3686)
* Move to Admin section: CPU and Mem Limits.

* Fix TOC entry.
2017-05-08 19:30:59 -07:00
Steve Perry 34a71341eb Move to Tasks: Out of Resources. (#3685) 2017-05-08 19:12:27 -07:00
Steve Perry 1304506ac2 Move to Admin section: Quotas. (#3684) 2017-05-08 18:35:53 -07:00
Steve Perry 177c96da73 Move to Tasks: ThirdPartyRes. (#3679)
* Move to Tasks: ThirdPartyRes.

* Change title.
2017-05-08 14:14:13 -07:00
Steve Perry 20ff36112a Move to Debug section: Auditing. (#3678) 2017-05-08 12:53:43 -07:00
Steve Perry eccd238b1c Move to debugging section: shell. (#3677) 2017-05-08 11:22:29 -07:00
Steve Perry 216856f0b9 Change title. (#3663) 2017-05-08 10:40:18 -07:00
Eugene Pirogov 8260e7cd06 Fix a small typo 2017-05-08 10:26:16 -07:00
Andrew Chen 76fe741576 grammar nits 2017-05-08 10:10:47 -07:00
Mik Vyatskov 46ff287a87 Fix Elasticsearch logging manual 2017-05-08 10:07:17 -07:00
Steve Perry db929e4e2b Move to Accessing Apps: List Containers. (#3661) 2017-05-05 14:26:23 -07:00
Steve Perry daecd7213d Move StatefulSet topics. (#3659)
* Move StatefulSet topics.

* Fix toc paths.
2017-05-05 13:30:15 -07:00
Steve Perry 3b6a566625 Move to Tasks: Service Access App. (#3655) 2017-05-05 10:44:21 -07:00
Steve Perry af9e003fb3 Move Dashboard to Accessing Apps. (#3654)
* Move Dashboard to Accessing Apps.

* Fix typo.
2017-05-05 10:15:29 -07:00
Marcel Corso dd438bc3c6 fix wrong addresses for mysql-statefulset.yaml and gce-volume.yaml 2017-05-05 13:40:19 +02:00
Steve Perry ca91dd2869 Fix yaml paths. (#3648) 2017-05-04 19:28:01 -07:00
Steve Perry 0f881b20d7 Path fix 3 (#3647)
* Fix yaml path.

* Fix yaml paths.
2017-05-04 18:49:44 -07:00
Steve Perry 76bd752c41 Fix yaml path. (#3646) 2017-05-04 18:24:00 -07:00
Steve Perry ccc615a353 Fix yaml path. (#3644) 2017-05-04 18:03:24 -07:00
Steve Perry 29790b232c Move to Tasks: Connect Front Back. (#3643)
* Move to Tasks: Connect Front Back.

* Fix paths.
2017-05-04 16:48:27 -07:00
Steve Perry 3996566963 Add note about Deployments. (#3642)
* Add note about Deployments.

* Fix typo.
2017-05-04 15:54:11 -07:00
Steve Perry 559c78c8b5 Move to Running Applications: Pet to Stateful. (#3640) 2017-05-04 14:03:31 -07:00
Steve Perry 204aad82b1 Move to Tasks: Replicated Stateful. (#3639)
* Move to Tasks: Replicated Stateful.

* Fix toc entry.
2017-05-04 13:31:11 -07:00
Steve Perry 712c374379 Move to Tasks: Single-instance Stateful. (#3638) 2017-05-04 12:04:28 -07:00
Steve Perry fc533bea91 Combine topic on commands and args. (#3637)
* Combine topic on commands and args.

* Fix redirect.
2017-05-04 11:38:34 -07:00
Steve Perry 1cc0b4b93a Move topic to Inject Data section. (#3635) 2017-05-04 11:08:41 -07:00
Steve Perry 15bc72e475 Move topic to Injecting Data section. (#3634)
* Move topic to Injecting Data section.

* Fix path in TOC.
2017-05-04 10:43:17 -07:00
Steve Perry 965dfd948a Remove ReplicationController tutorial. (#3628) 2017-05-03 18:10:06 -07:00
Steve Perry 1663f37f90 Move topic to Tasks. (#3627) 2017-05-03 17:44:23 -07:00
Steve Perry ede2648b28 Move topic to Injecting Data section. (#3626) 2017-05-03 16:31:55 -07:00
Steve Perry 6935b1c6a9 Move topic to Injecting Data section. (#3623)
* Move topic to Injecting Data section.

* Update include paths.

* Remove old file.
2017-05-03 14:20:05 -07:00
Steve Perry 7c1e0a95fb Move topic to Injecting Data section. (#3622)
* Move topic to Injecting Data section.

* Move included file.
2017-05-03 12:35:15 -07:00
Steve Perry 53eb49f080 Change title. (#3621) 2017-05-03 11:26:47 -07:00
Steve Perry 2442dc292f Move topic to Configuration section. (#3620)
* Move topic to Configuration section.

* Move included file.
2017-05-03 11:10:07 -07:00
Steve Perry f28c8376e0 Change title. (#3619) 2017-05-03 10:40:09 -07:00
Ahmet Alp Balkan 5245ee55eb rolling-update: remove link to the doc itself
Fixes #3357. I'm removing this statement as it's not clear where it should
actually be pointing to...

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-05-02 12:16:10 -07:00