Commit Graph

12707 Commits (a34d239d87d242313f4f0e303173f647a48415b6)

Author SHA1 Message Date
Fabrizio Pandini f88c8e3191 Improve PKI certificates and requirements page (#16399)
* improve-pki-page

* address comments
2019-10-23 08:56:14 -07:00
Ed Randall f67eae9a8d In-pod API access without official lib (#16884)
* Short example of internal API usage without official libs

* Bump subheading sizes by 1; Incorporated review comments;
2019-10-23 08:54:17 -07:00
Karen Bradshaw f21035fcf1 clarify feature gate table titles (#17031)
Add further details about the difference between the
two feature gate tables. The additional information and
table titles should help authors when creating or
updating the table entries.
2019-10-23 08:52:18 -07:00
Donald Little d91ed6bfa2 update order of kubeadm init phase command docs (#16922)
Rearrange the order of the kubeadm init phase subcommand documentation
to match that in which the commands are executed in kubeadm init. This
change doesn't introduce any changes to actual content of the
documentation and only modifies the order in which it is presented.
2019-10-23 08:50:14 -07:00
Karen Bradshaw f29d3153eb rename reference/kubernetes-api/index (#16947)
- renamed docs/reference/kubernetes-api/index.md
- added weight to files in docs/reference/kubernetes-api
- attempt to clean up labels-annotations-taints.md
- updated _redirects file
2019-10-23 08:48:16 -07:00
oneoneonepig 452d5822d2 Update deployment.md (#17023) 2019-10-23 08:46:17 -07:00
Rajesh Deshpande fe74e3f318 Adding references to page for better understanding (#16995)
Adding all required reference links to the page for better navigations to understand related concepts.
2019-10-23 08:44:16 -07:00
Ashish 3c88fb1c14 Add “API group” to glossary #15906 (#16192)
Created API Group glossary term
Linked glossary term to applicable pages
2019-10-23 08:42:17 -07:00
Rajesh Deshpande 8d51203aef Adding whats next section to configure service account (#16994)
Adding What's next section to the 'configuring service account' page which was missing earlier. Also, moved informative statement about document to 'Note' section
2019-10-23 08:40:15 -07:00
Rajesh Deshpande b0df02500f Modifying adding label to node steps (#16993)
* Modifying adding label to node steps 

Existing steps does not show what labels the node has before adding a new label. So I have changed the command to list out node along with their labels before adding any new label. This will help first-time readers to understand existing labels and then how we can add a new label and display it.

* Update content/en/docs/tasks/configure-pod-container/assign-pods-nodes.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>
2019-10-23 08:38:17 -07:00
Ismail Alidzhikov 18ee7f8d94 en: Remove deprecated --include-uninitialized flag (#16974)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-23 08:36:19 -07:00
James Peach 527f07415c en: fix Contour ingress controller link (#16989)
Contour is now maintained by VMware and has a project site.

Signed-off-by: James Peach <jpeach@apache.org>
2019-10-23 08:34:15 -07:00
Ismail Alidzhikov 7a31f11608 Update link (#16966)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-23 08:32:15 -07:00
Luzhenxing 14f9b40f66 modify example error about hpa of autoscaling/v2beta2 HorizontalPodAutoscaler (#16950) 2019-10-23 08:30:18 -07:00
shub-asa1 1ef74de2ab syntax error in a command fix (#16980)
fix for issue #16972
2019-10-23 08:28:16 -07:00
Zach Corleissen b894856e8e Update how to run Hugo locally (#16982) 2019-10-23 08:26:19 -07:00
Kevin Kelani 228ac01c84 Fixes path in first ingress resource yaml (#17017)
When the second path is attached to `example-ingress` for `/v2` it doesn't work because the first path captures all paths. Solution is the make the `/` capture everything except `/v2` (also captures `/v2/<anything else>`)
2019-10-23 08:24:19 -07:00
Himanshu Pandey d600ed6f0c Added source location for kube-up.sh (#17016) 2019-10-23 08:22:16 -07:00
Luzhenxing 6c791bc264 modify error id (#17019) 2019-10-23 08:20:15 -07:00
Mitesh Jain 9b33cfd360 Remove k8s version references for MetricsServer in resource-metrics-pipeline. (#17028) 2019-10-23 08:18:16 -07:00
Joao Morais ff1f0c7398 Add HAProxy Ingress controller (#17130)
Add HAProxy Ingress to the list of ingress controller implementations
2019-10-23 08:14:15 -07:00
Mike Parker e3aeebed31 Update install-kubectl.md (#17110)
Docker for Windows is now called Docker Desktop for windows
2019-10-23 08:12:17 -07:00
Alexander Zhukov cd1b7d6f45 Use the tidle shortcut in the --cache-dir default (#17115) 2019-10-23 06:28:15 -07:00
Yuk, Yongsu d437e8c6bc en: Change the full link in the document to an inline link. (#17057)
* Change the full link in the document to an inline link.

grep -r "https \: \ / \ / kubernetes \ .io" content/en/docs
Changed to inline link except the following list.
- URLs are mentioned directly in the body
- release note
- url to blog
- url to community
- Url to be redirected

* Apply suggestions from code review

Co-Authored-By: June Yi <june.yi@samsung.com>
2019-10-23 06:20:14 -07:00
Armando Migliaccio 77d831c7ea Replace Digital Ocean with DigitalOcean (#17033)
The former is the official spelling, but both spellings have been
used throughout the docs. This commit replaces the occurrences of
the unofficial spelling with the official one.
2019-10-22 14:34:13 -07:00
aimeeu 04127a3acb Update script for Python3, PyYAML 5.1.2 (#17127)
-Update to use argparse.ArgumentParser() for command line args
-Use tempfile library to create tmp work directory

-Remove shutil.rmtree because it was throwing permission errors and
not deleting the directory. Also no longer needed after switching
to tempfile.

-Enchance error handling
-Add check for Go installation
-Enhance check for PyYAML installation
-Change deprecated PyYAML load function to full_load
-Add comments at top of file
-Modify to comply with PEP8
-Update kubernetes-components.md with software versions to match script

Signed-off-by: Aimee Ukasick <aimeeu.opensource@gmail.com>
2019-10-22 14:04:18 -07:00
RafaelMassoniSS 07431dd930 Add content/pt/docs/concepts/overview/working-with-objects/names.md (#17030) 2019-10-22 05:31:24 -07:00
Nguyen Hai Truong bf6414bff9 Init Vietnamese localization (#16965)
Init of the Vietnamese translation of the Kubernetes documentation / Website

Signed-off-by: Nguyen Hai Truong <truongnh@vn.fujitsu.com>
2019-10-21 23:39:22 -07:00
Misty Linville 38b9fd31a7 Remove mistyhacks@ from OWNERS_ALIASES (#16694)
New role in day job means my ability to participate will be limited.
2019-10-21 23:37:22 -07:00
Mitesh Jain bc2323cece Update broken links for API resources in federation.md (#17082) 2019-10-21 07:09:38 -07:00
Rémy Léone a3ac7ded92 Translate the localization page to French (#13431) 2019-10-21 02:43:37 -07:00
Mitesh Jain 4bc6196ac0 Update patch release manager to patch release team in JA version skey policy. (#17045) 2019-10-20 19:41:36 -07:00
Mitesh Jain cc090957a7 Update patch release manager to patch release team in version skew po… (#17008)
* Update patch release manager to patch release team in skew support policy.

* Adding link for additional patch-release information to version skew policy.
2019-10-20 06:09:36 -07:00
Ismail Alidzhikov 4e555c736f zh: Dated "Planned Improvements" section in Managing Compute Resources for Containers (#16968)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-19 23:31:38 -07:00
Ismail Alidzhikov 566aa18902 de: Removed uninitialized flag reference from kubectl cheetsheet (#16973)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-19 04:59:37 -07:00
Gede Wahyu Adi Pramana 14d0710b2e Translating Pod to ID Localization (#16979) 2019-10-19 04:13:37 -07:00
Ismail Alidzhikov 5d716ae6d9 ja: Fix fluentd image (#16963)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-18 01:33:58 -07:00
Ismail Alidzhikov 87e4846144 de: Replace deprecated kubectl run (#16971)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-18 00:35:58 -07:00
Nikolai Guyot 2f44e578aa Fix link to Kubernetes Object Management page (#16941) 2019-10-17 20:27:58 -07:00
James Peach 607874653a id: fix Contour ingress controller link (#16990)
Contour is now maintained by VMware and has a project site.

Signed-off-by: James Peach <jpeach@apache.org>
2019-10-17 20:15:57 -07:00
Yudi A Phanama 320acb7d89 Translate Pod Security Policy doc to Indonesian (#16699)
* Translate Pod Security Policy doc to Indonesian

* Apply reviews to Pod Security Policy translation
2019-10-17 20:13:57 -07:00
bnjf abb432a9d8 Update nodelocaldns.md (#16440)
DNSCahe -> DNSCache
2019-10-17 19:59:57 -07:00
Joshua Bezaleel Abednego 643c14ae7d Add translation for ReplicaSet in ID localization (#16722)
* Add translation for ReplicaSet in ID localization

* Add controllers/frontend.yaml, controllers/hpa-rs.yaml and pods/pod-rs.yaml to example folder
2019-10-17 19:49:58 -07:00
James Peach 78e40f5dd4 zh: fix Contour ingress controller link (#16991)
Contour is now maintained by VMware and has a project site.

Signed-off-by: James Peach <jpeach@apache.org>
2019-10-17 19:41:57 -07:00
Mitesh Jain e3aec37252 Change federation documentation link to v2 in ingress. (#17011) 2019-10-17 11:47:59 -07:00
Ismail Alidzhikov b6b6011931 ko: Fix fluentd image (#16962)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-16 20:58:39 -07:00
Luzhenxing 4abbbdd41b modify error spelling of kubectl (#16957) 2019-10-16 17:56:39 -07:00
aimeeu 3fdd28a96c Update UAA, Dex links in setup instructions for specific systems (#16945)
Signed-off-by: Aimee Ukasick <aimeeu.opensource@gmail.com>
2019-10-16 16:46:39 -07:00
Ismail Alidzhikov 03cbde63e8 en: Fix fluentd image (#16959)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-16 16:24:39 -07:00
Ismail Alidzhikov b3739ecf7a zh: Fix fluentd image (#16961)
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
2019-10-16 11:51:30 -07:00