Quan Tian
c1693b5293
Unify typical apiserver port in docs
2020-06-08 07:20:31 -07:00
Jerry Park
cb00e9fbd9
Fix issue with k8s.io/docs/reference/kubectl/overview/
2020-06-08 05:55:07 +00:00
Kubernetes Prow Robot
87cb0c3c82
Merge pull request #21519 from vijaymateti/secret
...
broken link on secret page to container environement
2020-06-07 07:41:46 -07:00
Weiping Cai
a01ea635e2
deprecated kubectl run command flag replicas and add note
...
Signed-off-by: Weiping Cai <weiping.cai@daocloud.io>
2020-06-07 10:53:21 +08:00
Weiping Cai
e990e46f63
deprecated kubectl run command flag replicas for en
...
Signed-off-by: Weiping Cai <weiping.cai@daocloud.io>
2020-06-06 15:45:54 +08:00
Zhi Feng
1743f99808
Specify verbs in admission controller doc
2020-06-05 16:25:32 -07:00
Joel Smith
8c67457232
Security issues: Fix link to PSC members
2020-06-05 14:32:26 -06:00
Mateti, Vijay
a82535615f
updated broken glossary link for container environment concept on secret concept
2020-06-05 02:11:23 -04:00
Mateti, Vijay
effc56fa9f
updated broken container environment glossary
2020-06-05 02:09:22 -04:00
Kubernetes Prow Robot
33064defa4
Merge pull request #21222 from onlydole/bugfix-rbac-alias
...
Remove local serving issues by updating RBAC alias
2020-06-03 10:20:20 -07:00
Prasad Katti
22201412a6
Add `IPv6DualStack` to feature gate reference
2020-06-01 17:56:23 -07:00
Kubernetes Prow Robot
1f7eea0d1e
Merge pull request #21216 from kbhawkey/kb-cleanup-api-versions
...
clean up prior api refs and links
2020-06-01 07:17:55 -07:00
Marc Nuri
c1acc9a571
Add YAKC (Yet Another Kubernetes Client) for Java
2020-05-30 07:38:12 +02:00
Karen Bradshaw
311679eeb4
clean up prior api refs and links
2020-05-29 12:09:44 -04:00
Tim Bannister
1399969c60
Use shortcode for link to API reference
2020-05-28 20:18:27 +01:00
Taylor Dolezal
f7e795c5a2
Remove local serving issues by updating RBAC alias
2020-05-28 09:19:45 -07:00
Andrea Nodari
3f5beba251
Link `managedFields` to correct API docs
2020-05-28 17:22:31 +02:00
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
Fernando Karnagi
b2d21616d8
updated mistypo
2020-04-21 09:15:09 +08:00
Fernando Karnagi
eefe9b19bf
Various updates
2020-04-21 09:12:17 +08:00
Fernando Karnagi
7bf6547bb0
Updated instruction on Create Certificate Request Kubernetes Object
2020-04-21 09:00:01 +08: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
Fernando Karnagi
5a9aeb7d26
Added steps for normal user authentication
2020-04-20 09:20:28 +08: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
Joan Goyeau
446eb36936
dsort Community-maintained libs
2020-04-13 11:04:33 -07:00
Joan Goyeau
394dee9dd1
Remove Haskell from Community as it's Official
2020-04-13 11:03:07 -07:00
Marcin Niemira
4d52cb6dd5
Merge branch 'master' into fix-restart-always-docs
2020-04-12 16:44:28 +10:00
Tim Bannister
1e99f4f71f
Use API resource name for clarity
2020-04-11 21:33:57 +01:00
Tim Bannister
068f8e4c69
Reword pod template concept information
...
- Mention address family in pod concept
Preparing to reword this for IPv4 / IPv6 dual stack
- Fix capitalization for “cluster”, “container” and “volume”
These are not resources you manage via kubectl
- Harmonize short descriptions for workload objects in glossary
- Expand definition of StatefulSet
- Use tooltip for “kubelet”
- Revise pod template text
- Revise What's Next section
2020-04-11 18:56:32 +01:00
Kubernetes Prow Robot
a608d9d5b7
Merge pull request #20135 from davivcgarcia/davivcgarcia-issue-19535
...
Fix refs to old K8s releases on glossary entries
2020-04-09 07:59:43 -07:00
Davi Garcia
88cf57f8c9
Fix refs to old K8s releases on glossary entries
...
Signed-off-by: Davi Garcia <dvercill@redhat.com>
2020-04-09 11:31:21 -03:00
Sergio Pena
5bc22bb175
Update certificate-signing-requests.md
...
Fix typo
2020-04-09 11:59:03 +02:00
Gaurav Sofat
09b1eb29d3
Update content/en/docs/reference/access-authn-authz/rbac.md
...
Co-Authored-By: Jordan Liggitt <jordan@liggitt.net>
2020-04-09 09:05:57 +05:30
Gaurav Sofat
bc5ac6c7ec
Modify RBAC Authorizer log message
2020-04-09 06:13:04 +05:30
Kubernetes Prow Robot
3cfde81973
Merge pull request #20180 from viniciusbds/patch-1
...
Fix a broken link at docs/setup/production-environment/tools/kubeadm/install-kubeadm.md
2020-04-08 17:15:43 -07:00
Kubernetes Prow Robot
e892aaa146
Merge pull request #19849 from karolinepauls/patch-1
...
api-concepts.md: Watch bookmarks
2020-04-08 16:39:44 -07:00
Vinicius Barbosa
056ab08b5a
Update container-runtime.md
2020-04-08 16:02:17 -03:00
Kubernetes Prow Robot
7d39a834fe
Merge pull request #19928 from AlphaWong/patch-1
...
update kubectl create commend in kubectl Usage Conventions page
2020-04-08 09:37:44 -07:00
Alpha
c0950b5094
update kubectl create commend
2020-04-08 21:29:13 +08:00
Julian V. Modesto
18260ef37b
Document where the API supports single resources.
...
Co-Authored-By: Tim Bannister <tim@scalefactory.com>
2020-04-06 13:47:21 -04:00
Marcin Niemira
2d3d7b9162
rm --record from kubectl conventions
2020-04-06 00:02:34 +10:00
Marcin Niemira
bd8267dbc0
rm informatio about generators from conventions
2020-04-05 23:59:19 +10:00
张潇
8ecee6be97
update -enable-cadvisor-json-endpoints default value and tag deprecated
2020-04-03 22:25:20 +08:00
Kubernetes Prow Robot
87e4e214df
Merge pull request #20007 from dexhunter/patch-1
...
fix capitalization
2020-04-02 20:31:46 -07:00
Jacky Wu
dc2f94faf0
doc: clean up the federation and kubefed(federation v1 cli) references. ( #19583 )
2020-03-31 08:50:41 -07:00
Dixing (Dex) Xu
77cee072b8
fix capitalization
2020-03-31 19:53:59 +08:00
Rajesh Deshpande
be6c0c3a21
Removing references of `kubectl rolling-update` command ( #19449 )
...
* Removing rolling-update command details
Removing rolling-update command details
Removing references to kubectl rolling-update command
* Removing rolling-update references
2020-03-27 18:33:53 -07:00
Sascha Grunert
b5433ed594
Fix security announcement mailing list ( #19856 )
...
The kubernetes-announce mailing list is mostly used for release
announcements whereas a dedicated kubernetes-security-announcement list
exists for security related topics.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-03-26 19:26:22 -07:00
Will Xiang
e9046853cd
fix inital alpha version of ServiceTopology ( #19850 )
...
* fix inital alpha version of ServiceTopology
* add description of ServiceTopology
2020-03-26 02:02:25 -07:00
Tim Bannister
dec978178a
Reword glossary entry ( #18046 )
...
- Use API resource name for clarity
- Mark as deprecated
2020-03-26 01:24:25 -07:00
Karoline Pauls
512023837f
api-concepts.md: Watch bookmarks
...
Replaces "an information" and fixes a lost plural.
2020-03-26 00:45:01 +00:00
David Birks
1b47d0191b
Fix broken link to "Default roles and role bindings" ( #19836 )
2020-03-25 16:30:25 -07:00
Mateusz Gozdek
3a3312f788
Fix example in certificate-signing-requests.md ( #19845 )
...
The example ClusterRole rule mentions 'resourceName' property, which do not exist.
It should be 'resourceNames'.
2020-03-25 14:58:26 -07:00