Commit Graph

3430 Commits

Author SHA1 Message Date
Kubernetes Prow Robot 198bd25216 Merge pull request #20599 from kbhawkey/migrate-kubelet-comp
reformat kubelet ref page
2020-05-11 18:18:24 -07:00
Karen Bradshaw 4416288c28 reformat kubelet ref page 2020-05-11 19:02:35 -04:00
Karen Bradshaw 7a98007a29 update tabs shortcode 2020-05-11 18:12:43 -04:00
Kubernetes Prow Robot 6c96bcbe84 Merge pull request #20893 from jimangel/fix-feature-state
fix for feature state shortcode
2020-05-11 14:28:22 -07:00
Jim Angel f3e733ecba fix for feature state shortcode 2020-05-11 14:57:03 -05:00
Kubernetes Prow Robot 0a6f733367 Merge pull request #20877 from pjhwa/fix-20875
Fix issue with k8s.io/docs/contribute/advanced/
2020-05-11 10:31:51 -07: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
Kubernetes Prow Robot a0f8b298e0 Merge pull request #20858 from gujingit/master
Add content about the Alibaba cloud provider
2020-05-11 00:31:51 -07:00
povsister c0238b04cf Update kubelet command line reference
Add hint for inconsistent default values
2020-05-11 10:03:26 +08:00
Jerry Park 19d45c8dd0 Fix issue with k8s.io/docs/contribute/advanced/ 2020-05-11 06:42:03 +09:00
gujingit 03aa645e8c add load balancer info for alibaba cloud provider 2020-05-10 09:52:47 +08:00
Kubernetes Prow Robot 2139b50702 Merge pull request #20793 from JayBeale/patch-3
Documenting read-only rootfs for issue 17927
2020-05-09 15:19:51 -07:00
Kubernetes Prow Robot 89982e33f8 Merge pull request #20798 from inaitgaj/patch-1
logs command to check etc/hosts file corrected
2020-05-09 15:15:50 -07:00
Kubernetes Prow Robot 83aa3bbbfb Merge pull request #20648 from viniciusbds/issue-20614
Update content/en/docs/reference/kubectl/overview.md
2020-05-09 15:11:50 -07:00
Kubernetes Prow Robot 8584dc7bbc Merge pull request #20863 from brandondoran/fix-typo-nodelocaldns
Fix small typo NodeLocal DNSCache doc
2020-05-09 14:43:51 -07:00
Brandon Doran 5f844149d4 Fix small typo NodeLocal DNSCache doc 2020-05-09 11:07:39 -07:00
Kubernetes Prow Robot edba6ff1a2 Merge pull request #20622 from davivcgarcia/feature-15123
Clarify minimum cluster resource requirement for tasks
2020-05-09 09:53:51 -07:00
Vinicius Barbosa d77e95a8e8 Update overview.md: remove a depreciated flag 2020-05-09 13:35:14 -03:00
Kubernetes Prow Robot 78ab651c9e Merge pull request #18342 from sftim/20191227_tidy_pod_preset_pages
Tidy pages for PodPreset
2020-05-09 09:01:53 -07: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
Kubernetes Prow Robot 024cbb184b Merge pull request #20859 from sharet-adl/patch-2
pipe char escape, flag --server-print, labels sample, exec extra --, config NL
2020-05-09 08:11:51 -07:00
Kubernetes Prow Robot 7000da5cfb Merge pull request #20861 from viniciusbds/patch-1
Update k8s.io/docs/tasks/access-application-cluster/connecting-frontend-backend/
2020-05-09 08:07:51 -07:00
Kubernetes Prow Robot 07fa80f443 Merge pull request #20856 from willise/docs/affinity
docs: reorganize topologyKey constraints
2020-05-09 07:51:50 -07:00
Kubernetes Prow Robot 4e34fd1e2c Merge pull request #20854 from willise/docs/initContainer
docs: Add all probe explanation of init contaners
2020-05-09 07:43:50 -07:00
viniciusbds 471840944c Add cleanup topic 2020-05-09 10:23:26 -03: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
willise fd16ff5529 docs: reorganize topologyKey constraints
Signed-off-by: willise <sunshuai@cmss.chinamobile.com>
2020-05-09 14:44:25 +08:00
willise 6e64f84983 docs: Add all probe explanation of init contaners
Signed-off-by: willise <sunshuai@cmss.chinamobile.com>
2020-05-09 11:03:47 +08:00
gujingit c349c7dfd2 Add content about the Alibaba cloud provider 2020-05-09 10:49:19 +08:00
Kubernetes Prow Robot 22d2069bc0 Merge pull request #20417 from viniciusbds/issue-20414
Remove the --generator deprecated flag of a tutorial
2020-05-08 19:45:52 -07: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 ba1e890aaa Merge pull request #20720 from afmsavage/patch-1
Fixed configure-access-multiple-clusters.md
2020-05-08 19:41:52 -07:00
Kubernetes Prow Robot 421caff2b5 Merge pull request #20741 from jqmichael/patch-2
Made autoscale command more explicit
2020-05-08 19:39:52 -07:00
Kubernetes Prow Robot eef6edfb93 Merge pull request #20738 from fml2/feature/Document-char-encoding-in-mapped-volumes
Document char encoding in mapped volumes
2020-05-08 19:37:51 -07:00
Kubernetes Prow Robot 29268394e6 Merge pull request #20761 from sftim/20200504_drop_endpointslice_feature_callout
Don't mention EndpointSlice resource on front page
2020-05-08 19:33:52 -07:00
iaoiui af50366896 Some docs incorrect v1.18 kubectl run command (#20784)
* use "kubectl create deploy" instead of "kubectl run"

* omit whitspace fix

* omit whitspace fix

* avoid shorthand
2020-05-08 19:27:52 -07:00
Kubernetes Prow Robot 9c8e3c5130 Merge pull request #20819 from rkamudhan/patch-8
adding OVN4NFV-K8S-Plugin in addons
2020-05-08 19:19:51 -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
Kubernetes Prow Robot 2d03fb3cf4 Merge pull request #20815 from wawa0210/change-en-os-label
[Trival] beta.kubernetes.io/os deprecated since v1.14, are targeted for removal in v1.18
2020-05-08 19:15:52 -07:00
Kubernetes Prow Robot 68283c7717 Merge pull request #20816 from rkamudhan/patch-7
Adding OVN4NFV-K8S-Plugin in networking.md
2020-05-08 19:13:52 -07:00
Kubernetes Prow Robot 7b8a28bd26 Merge pull request #20840 from GauravJain98/master
fixed ingress minikube 2nd deployment commands
2020-05-08 19:11:53 -07:00
Kubernetes Prow Robot b92cd32196 Merge pull request #20833 from prasadkatti/pdb_feature_state
Add feature state for PodDisruptionBudget
2020-05-08 19:09:52 -07:00
Prasad Katti 8b7205183d Add PodDisruptionBudget to feature gates reference 2020-05-08 08:35:47 -07:00
Gaurav Jain b683006914 fixed ingress minikube 2nd deployment commands 2020-05-08 16:02:27 +05:30
Kubernetes Prow Robot 21d910d5a8 Merge pull request #20788 from nikitakalyanov/tinyfix-helloworld-1
Remove reference to deprecated image
2020-05-08 01:59:42 -07:00
Kubernetes Prow Robot d41aaf877e Merge pull request #20824 from juampynr/patch-1
Fix syntax error
2020-05-08 01:55:42 -07:00
Kubernetes Prow Robot 82ca68492e Merge pull request #20830 from prasadkatti/fix_pdb_example
Fix cluster state in example on Disruptions concept page
2020-05-08 01:49:43 -07:00
Kubernetes Prow Robot 1e48ec3ef7 Merge pull request #20790 from DanRoscigno/patch-1
Update step deploying `kube-state-metrics` in "Example: Adding logging and metrics..."
2020-05-07 22:21:43 -07:00
Prasad Katti d1952bf98c Add feature state for PodDisruptionBudget 2020-05-07 16:09:18 -07:00