Commit Graph

646 Commits (04476c833def606cf51f206d218951c22080ee07)

Author SHA1 Message Date
divyabhushan 6595ea6e86 Rendering issues on#service-account-permissions #21029 2020-05-21 17:25:14 +02:00
Prasad Katti 75317419b9 Use feature state Hugo shortcode 2020-05-16 11:28:43 -07:00
Teodor Haret c57fa62223 Update kubectl overview page - list of operations 2020-05-12 12:20:01 +03:00
Karen Bradshaw 4416288c28 reformat kubelet ref page 2020-05-11 19:02:35 -04:00
Adam Kaplan 55e17b86f2 mv "Assign Pods" and "Taints and Tolerations" concepts to "Scheduling and Eviction"
* Moved "Assigning Pods to Nodes" article to Concepts -> Scheduling and Eviction
* Moved "Taints and Tolerations" article to Concepts -> Scheduling and Eviction
* Updated weight of the "Kubernetes Scheduler" article so it appears first
* Updated redirects
* Replaced links to "Assigning Pods to Nodes" and "Taints and Tolerations" articles
to avoid redirects.

Signed-off-by: Adam Kaplan <adam.kaplan@redhat.com>
2020-05-11 11:29:16 -04:00
Kubernetes Prow Robot 4d5ddc5586
Merge pull request #20855 from povsister/patch-1
Update kubelet command line reference
2020-05-11 04:59:50 -07:00
povsister c0238b04cf Update kubelet command line reference
Add hint for inconsistent default values
2020-05-11 10:03:26 +08:00
Vinicius Barbosa d77e95a8e8 Update overview.md: remove a depreciated flag 2020-05-09 13:35:14 -03:00
Kubernetes Prow Robot 2da45fa3a6
Merge pull request #17509 from sftim/20191109_node_concept_improvements
Improve Node, Taints, and Tolerations concepts
2020-05-09 08:59:51 -07:00
sharet-adl a3690b62a2
Fix couple of issues - display issue for pipe char, output for flag --server-print, labels sample, exec extra --, config sample missing newline
Proposing fixes for some issues in the page:

1. Handle display issue for the 'kubectl run' command, where pipe character ('|') is not properly escaped, so the text gets trimmed.  
Currently the text is rendered like this: "run	`kubectl run NAME --image=image [--env=“key=value”] [--port=port] [--replicas=replicas] [--dry-run=server".

The correct text will be displayed like:  
"kubectl run NAME --image=image [--env="key=value"] [--port=port] [--replicas=replicas] [--dry-run=server|client|none] [--overrides=inline-json] [flags]".  
Also, the description column would be displayed properly.

2. Fixing output of 'get pods' command, when flag --server-print is set to false.  
The only displayed columns would be NAME and AGE.  

3. Fixing description and sample command for delete pods (kubectl delete pods,service ..), where 'label-name' text is ambiguously used as the label's value. Labels are key-value pairs.  
Suggested way of writting it:  
"# Delete all the pods and services that have the label '<label-key>=<label-value>'.  
kubectl delete pods,services -l <label-key>=<label-value>"

Another way to write it could be:  
"# Delete all the pods and services that have the label 'name=<label-value>'.  
kubectl delete pods,services -l name=<label-value>"

4. Updating the syntax for three 'kubectl exec' commands, to include the '--' before the user's command, to be inline with current way of working and to avoid deprecation message.  

5. Enhance sample for 'kubectl config' command, where the newline was not handled properly.  
Before:  
[user@wstation ~]$ kubectl config view --template='{{ range .contexts }}{{ if eq .name "'$(kubectl config current-context)'" }}Current user: {{ .context.user }}{{ end }}{{ end }}'  
Current user: kubernetes-admin[user@wstation ~]$

After:  
[user@wstation ~]$ kubectl config view --template='{{ range .contexts }}{{ if eq .name "'$(kubectl config current-context)'" }}Current user: {{ printf "%s\n" .context.user }}{{ end }}{{ end }}'  
Current user: kubernetes-admin  
[user@wstation ~]$
2020-05-09 12:54:02 +03:00
Kubernetes Prow Robot 650845a4bf
Merge pull request #20747 from prasadkatti/patch-1
[kubeadm] warn if kernel/docker/etcd version(s) are older than the min required version(s)
2020-05-08 19:43:52 -07:00
Kubernetes Prow Robot 3c676d5e73
Merge pull request #20812 from prasadkatti/patch-2
Update feature state for APIListChunking
2020-05-08 19:17:52 -07:00
Prasad Katti 8b7205183d
Add PodDisruptionBudget to feature gates reference 2020-05-08 08:35:47 -07:00
Prasad Katti 237551019f
Update feature state for APIListChunking
APIListChunking is beta since v1.9
2020-05-06 18:03:06 -07:00
Prasad Katti f11fec502f Update the text for a link to match page title 2020-05-05 08:44:35 -07:00
Prasad Katti 8dbb2b19cf [kubeadm] warn if kernel/docker/etcd version(s) are older than the minimum required version(s) 2020-05-04 09:03:58 -07:00
Lucas Servén Marín 7fe458bb58
authentication.md: fix OIDC flag typo in table
This commit corrects an flag in the table of OIDC flag descriptions.

Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
2020-04-29 17:17:16 +02:00
Kubernetes Prow Robot 277831f168
Merge pull request #20513 from prasadkatti/patch-4
Remove 'kubeadm alpha kubelet config download'
2020-04-28 16:10:25 -07:00
Tim Bannister c5abd7704a Improve Node, Taints, and Tolerations concepts
- Use glossary shortcodes in Node concept
  Add glossary tooltips to help new readers take in unfamiliar concepts.
- Move minion hint to glossary
  The page about Node need not mention the former name (minion): it has
  been many releases since the name change.
  Instead, add a hint to the full glossary definition.
- Use note shortcodes where appropriate
- Order node management section first in concept page
- Drop list of components that act on Nodes
  With Operators and CustomResourceDefinitions now common, plus the
  cluster API, it's less easy to give a definitive list of components that
  interacr with Node objects.
- Tidy old mentions of GA features for Node
- Give node tainting by condition its own section
- Introduce toleration concept before using it
- Mention version in TopologyManager feature state
- Other rewording
- Tidy Node condition table
- Explain SchedulingDisabled synthesized condition
- Drop details of supported versions for NodeRestriction
  Assume that cluster version is v1.13 or later
2020-04-28 23:30:05 +01:00
Kubernetes Prow Robot cf2fe36353
Merge pull request #20533 from prasadkatti/patch-1
Update default pause image in kubelet reference
2020-04-27 11:51:22 -07:00
Tobias Klauser 0cc8cd3e32 Update list of admission plugins enabled by default to k8s 1.18
Extracted by running `kube-apiserver -h | grep enable-admission-plugins`
on 1.18.2
2020-04-27 12:25:40 +02:00
Prasad Katti 7798daaa91 Remove 'kubeadm alpha kubelet config download'
Remove `kubeadm alpha kubelet config download` from 'kubeadm alpha' reference page.
2020-04-26 10:58:50 -07:00
Prasad Katti 103c684b6f
Update default pause image in kubelet reference 2020-04-23 18:52:19 -07:00
Kubernetes Prow Robot bd744c73e1
Merge pull request #20511 from prasadkatti/patch-1
kubeadm checks if `conntrack` is in path
2020-04-22 19:33:44 -07:00
Prasad Katti eaf6b76f5b
Replace "Mark master" w/ "Mark control-plane"
Ref - https://github.com/kubernetes/kubernetes/pull/70885/
2020-04-22 17:42:35 -07:00
Prasad Katti 31b04c1c4b
kubeadm checks if `conntrack` is in path
`kubeadm` errors out during preflight checks if `conntrack` executable is not in path.
https://github.com/kubernetes/kubernetes/pull/85857
2020-04-22 17:15:03 -07:00
Kubernetes Prow Robot b58517c95d
Merge pull request #20492 from prasadkatti/doc_fixes
Update kubeadm implementation details page
2020-04-22 11:45:45 -07:00
Prasad Katti 4efaf2a3e0 Update kubeadm implementation details page 2020-04-22 11:27:27 -07:00
Kubernetes Prow Robot 3bffa50161
Merge pull request #19705 from sftim/20200318-revise-cloud-controller-manager
Revise cloud-controller-manager documentation
2020-04-21 20:25:53 -07:00
Kubernetes Prow Robot accd7591b0
Merge pull request #20107 from n0npax/fix-restart-always-docs
Fix --restart=always docs
2020-04-21 20:21:53 -07:00
Kubernetes Prow Robot 2fd5c43797
Merge pull request #20102 from sftim/20200405_add_configmap_concept
Add ConfigMap concept
2020-04-21 20:11:52 -07:00
Kubernetes Prow Robot 9aa6cfabba
Merge pull request #20470 from gosoon/bugfix
fix: error message
2020-04-21 19:29:52 -07:00
Tim Bannister 5db3af4938 Revise cloud-controller-manager documentation 2020-04-21 19:59:45 +01:00
Tim Bannister ea11774d64 Add ConfigMap concept page
Co-Authored-By: Celeste Horgan <celeste@cncf.io>
2020-04-21 19:36:42 +01:00
Prasad Katti 92649883ff
Update 'kubeadm init phase addon' doc section
The `kubeadm config` and `kubeadm upgrade` are not related to this section. So I removed them to keep this code block concise.
2020-04-21 10:01:10 -07:00
Marcin Niemira 57d4d52817
change sentence to nicer form as requested during CR 2020-04-21 20:40:49 +10:00
gosoon 1847278b1f fix: error message 2020-04-21 17:22:23 +08:00
Marcin Niemira b09893bbcc
rm mentioned generator from kubectl run 2020-04-21 19:08:05 +10:00
Marcin Niemira df2204ffd0
Merge branch 'master' of https://github.com/kubernetes/website into fix-restart-always-docs 2020-04-21 19:04:13 +10:00
Marcin Niemira 67abb1b5ff
add info about old support for generators 2020-04-21 19:01:40 +10:00
Kubernetes Prow Robot 2c90f60d82
Merge pull request #17782 from sftim/20191123_reword_pod_overview
Reword Pod concept (overview page)
2020-04-20 19:50:57 -07:00
Davi Garcia c0f60fa4f7 Add master term and expand control plane
Signed-off-by: Davi Garcia <dvercill@redhat.com>
2020-04-20 17:49:20 -03:00
Jim Angel 11ac6b9e13 adding custom-columns examples 2020-04-19 19:55:29 -05:00
Peter Wilson c02121b9ea Fix grammatical error 2020-04-18 23:42:22 -07:00
Kubernetes Prow Robot 304802bb96
Merge pull request #20285 from joan38/patch-1
Add joan38/kubernetes-client
2020-04-18 12:41:36 -07:00
Kubernetes Prow Robot 4ff8a8506d
Merge pull request #20192 from sergiopena/patch-1
Fix typo on conditions section
2020-04-17 09:01:07 -07:00
Marcin Niemira 560c5004d8
Update conventions.md
move generators to the end of the section as they are not part of run cmd
2020-04-15 21:57:18 +10:00
Adam Kaplan 1bb09e6d0d Rename "Scheduling: concept as "Scheduling and Eviction"
* Rename `docs/concepts/scheduling` to `docs/concepts/scheduling-eviction`
* Retitle concept header to "Scheduling and Eviction"
* Update redirects
* Update internal links (en only)

Part of proposal #19081

Signed-off-by: Adam Kaplan <adam.kaplan@redhat.com>
2020-04-14 08:51:00 -04:00
Karen Bradshaw 3994994684 regenerate ref docs, prepare hugo upgrade 2020-04-13 17:44:29 -04:00
Joan Goyeau b3bf6ae82a Add joan38/kubernetes-client to community libs 2020-04-13 11:05:09 -07:00