Gregory Guillou
76010c4fd9
Add Kind to the Local-machine Solutions ( #12994 )
2019-03-13 08:47:40 -07:00
JF Joly
2b34dd9b7c
Added link to New Relic agent install doc ( #13157 )
2019-03-13 08:37:42 -07:00
yanghaichao12
ca3efda3d5
Fix typos ( #13155 )
2019-03-13 08:35:39 -07:00
Jiacheng Xu
3d509106b9
Update assign-cpu-resource.md ( #13154 )
...
Remove the "do not" since you should not skip the steps if you don't have metric-server running.
2019-03-13 08:33:39 -07:00
Jintao Zhang
2b3ced6a00
fix certificate command ( #13152 )
...
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
2019-03-13 08:31:41 -07:00
Dipak Pawar
2a45c9ca35
removes extra /configmap from ui.properties path ( #13150 )
2019-03-13 08:29:42 -07:00
Timothy St. Clair
3f8bc96336
Remove the old setup from scratch documentation ( #13146 )
...
because it was woefully outdated.
2019-03-12 22:19:32 -07:00
Lubomir I. Ivanov
a15d6ebed9
kubeadm-troubleshooting: add entry about multi-valued args ( #12937 )
...
Add TS entry about the case where it's not possible to
pass multi-valued arguments to --component-name-extra-args flags
from the command line.
2019-03-12 16:56:38 -07:00
Karthik Gaekwad
6362d6173e
Alphabetized, and made linux academy consistent ( #13141 )
...
changed instances of linuxacademy.com to Linux Academy
2019-03-12 16:38:38 -07:00
Dinuka Arseculeratne
9e06367354
Fixed issue with ```shell being displayed ( #13144 )
2019-03-12 16:10:39 -07:00
Dani Comnea
56021dc671
Reorganize Federation tasks so we have it group and under one topic ( #12900 )
...
* Reorganize Federation tasks so we have it group and under one topic
* Intended replacement
2019-03-12 13:38:39 -07:00
Karthik Gaekwad
d7cae63dcd
updated networking ( #13137 )
2019-03-12 13:24:43 -07:00
Dani Comnea
da20b139da
Update configure-service-account task file to reference pod spec file from examples dir ( #13065 )
2019-03-12 12:38:39 -07:00
Karthik Gaekwad
5b1b1341cc
added K8s training materials ( #13136 )
2019-03-12 12:36:41 -07:00
chenrui
4f5d3ce834
Fix typo in `dns-horizontal-autoscaling.md` ( #13051 )
...
* `turning` -> `tuning`
* Remove duplicate `'s control`
2019-03-12 12:28:39 -07:00
yanghaichao12
ba9f7f10e2
Revise some places ( #13012 )
...
* Revert "Fix a typos"
This reverts commit 5dcca521c4
.
* Revise some places
temporary
2019-03-12 12:20:40 -07:00
Karthik Gaekwad
03cc1d8508
Adds a section for OKE cluster upgrades ( #13134 )
2019-03-12 11:40:39 -07:00
Andrew Sy Kim
787b0cd7ef
update links to the vSphere docs ( #13040 )
2019-03-12 11:20:40 -07:00
Jiacheng Xu
0e1858674f
Update assign-memory-resource.md ( #13037 )
...
Remove the "do not" since you should not skip the steps if you don't have metric-server running.
2019-03-12 10:30:42 -07:00
makocchi
23dacbb83b
Update command outputs to k8s 1.13 based ( #12771 )
...
* Update command outputs to k8s 1.13 based
* Update command outputs to k8s 1.13 based (2)
* Add the way to download the example manifest and change datetime in a pod log
* create a job from remote url
* Update content/en/docs/tasks/job/automated-tasks-with-cron-jobs.md
Co-Authored-By: makocchi-git <makocchi@gmail.com>
2019-03-12 10:24:42 -07:00
yanghaichao12
9e471e389c
Fix typos ( #13120 )
2019-03-12 10:14:39 -07:00
Jihoon Seo
01ed12e4e3
Update kubeadm-init.md ( #13068 )
...
* Fix not available config field in kubeadm-init.md
Update the line describing `unifiedControlPlaneImage`, since "unifiedControlPlaneImage" in ClusterConfiguration was changed to a boolean field called "useHyperKubeImage" in v1beta1.
( https://godoc.org/k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta1 )
* Update image names and versions in kubeadm-init.md
$ kubeadm config images list
k8s.gcr.io/kube-apiserver:v1.13.4
k8s.gcr.io/kube-controller-manager:v1.13.4
k8s.gcr.io/kube-scheduler:v1.13.4
k8s.gcr.io/kube-proxy:v1.13.4
k8s.gcr.io/pause:3.1
k8s.gcr.io/etcd:3.2.24
k8s.gcr.io/coredns:1.2.6
# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
k8s.gcr.io/kube-proxy v1.13.4 fadcc5d2b066 10 days ago 80.3MB
k8s.gcr.io/kube-controller-manager v1.13.4 40a817357014 10 days ago 146MB
k8s.gcr.io/kube-scheduler v1.13.4 dd862b749309 10 days ago 79.6MB
k8s.gcr.io/kube-apiserver v1.13.4 fc3801f0fc54 10 days ago 181MB
k8s.gcr.io/coredns 1.2.6 f59dcacceff4 4 months ago 40MB
k8s.gcr.io/etcd 3.2.24 3cab8e1b9802 5 months ago 220MB
k8s.gcr.io/pause 3.1 da86e6ba6ca1 14 months ago 742kB
* Update the way to use custom etcd image in kubeadm-init.md
According to rosti's [comment](https://github.com/kubernetes/kubeadm/issues/1255#issuecomment-439874004 ),
the `image` field under `etcd` (from `v1alpha3`) was replaced by a couple of fields - `imageRepository` and `imageTag`.
* Apply suggestions from @neolit123 in kubeadm-init.md
Suggestions from @neolit123: https://github.com/kubernetes/website/pull/13068#pullrequestreview-212806230
* Apply a suggestion from @rosti in kubeadm-init.md
A suggestion from @rosti : https://github.com/kubernetes/website/pull/13068#discussion_r264228348
2019-03-12 10:04:43 -07:00
cizixs
0f45f09354
Fix typo in deployment concept ( #13112 )
...
There is a typo in deployment concept doc: missing a code block
indicator, this commit fixes it.
2019-03-12 09:58:42 -07:00
Michael Ferranti
b8363e8d81
Add link to Portworx site ( #13108 )
...
Make it easier for people to understand if Portworx is the right solution for them with an additional link.
2019-03-12 09:54:44 -07:00
Marco Voelz
a3d246fc4a
Fix busybox `nslookup` example ( #13071 )
...
* Similarly to https://github.com/kubernetes/website/pull/9901 pin busybox image to 1.28. Although https://bugs.busybox.net/show_bug.cgi?id=11161 is closed, this still doesn't work on images > 1.28
* remove `/bin/sh` from the command to be executed on busybox, this leads to `/bin/sh: can't open 'nslookup': No such file or directory`
2019-03-12 09:50:50 -07:00
Dani Comnea
e38f800d81
Add codenew shortcode to configure-pod-configmap task file and sanitize the example files ( #13078 )
2019-03-11 20:28:38 -07:00
Zach Arnold
5e50314b27
add feature state labels to admission controllers ( #12689 )
...
* add feature state labels to admission controllers
* Minor edits
2019-03-11 17:32:38 -07:00
Karen Bradshaw
7b07d19360
fix short_description field in glossary files ( #13045 )
2019-03-09 00:33:29 -08:00
Petr Ruzicka
424437c1dd
Update secret.md ( #13039 )
...
Command output fixed
2019-03-08 22:05:28 -08:00
Ketankumar Jani
0407c5500f
update section `pods are preempted unneccessarily` ( #12961 )
...
Preemption must not happen when
there is no pending Pod, or when the pending Pods have equal or lower priority
than the victims.
2019-03-08 18:49:31 -08:00
Michael Iatrou
8d55b797a0
Clarify the blue/green upgrade example. ( #13009 )
2019-03-08 18:47:30 -08:00
Neha Yadav
92e602c438
Minikube: Cleanup everything to start new machine ( #12749 )
...
* Minikube: Cleanup everything to start new machine
* Quick fixes
2019-03-08 11:30:55 -08:00
Sarah Gray
18d6c123b7
Add Linode to list of implemented CCMs ( #13019 )
2019-03-08 09:29:26 -08:00
Bob Killen
cf52474db1
Fix codeblock in update deployment section ( #13029 )
...
Corrects codeblock in the "Update deployment" section of doc:
content/en/docs/concepts/workloads/controllers/deployment.md
2019-03-07 16:26:06 -08:00
Petr Ruzicka
7130b8c58b
Update secret.md ( #13018 )
...
Missing ``` fixed
2019-03-07 16:24:07 -08:00
Prince Rachit Sinha
471cb7ffa4
Fix markdown ( #13013 )
...
* Fix markdown typo
Remove extra triple backticks
* Follow indentation order
2019-03-07 16:22:04 -08:00
Venkat
1230263319
Add Quobyte's CSI plug-in reference in place of in-tree plug-in ( #13008 )
...
* Add Quobyte's CSI plug-in reference in place of in-tree plug-in
* Update content/en/docs/concepts/storage/volumes.md
Include CSI reference from the glossary.
Co-Authored-By: venkatsc <subbaraocse9@gmail.com>
* Update Quobyte CSI references
Co-Authored-By: venkatsc <subbaraocse9@gmail.com>
2019-03-07 16:18:05 -08:00
Michael Vorburger ⛑️
92132a4f0c
fix minor typo (missing "to") in custom resources doc ( #13005 )
2019-03-07 16:12:09 -08:00
Jonas Rosland
d2c6113c98
Add VMware Enterprise PKS and VMware Essential PKS ( #13003 )
...
* Add VMware Enterprise PKS and VMware Essential PKS
Signed-off-by: jonasrosland <jrosland@vmware.com>
* Update content/en/docs/setup/pick-right-solution.md
That's a good suggestion, thank you
Co-Authored-By: jonasrosland <jrosland@vmware.com>
2019-03-07 16:00:07 -08:00
Lubomir I. Ivanov
3f5e14702c
Revert "Add s390x platforms for calico" ( #12989 )
...
* Revert "Add s390x platforms for calico (#12616 )"
This reverts commit c533563bdc
.
* Oxford comma
2019-03-07 15:58:04 -08:00
SpringWar
8f30a140de
Update feature-gates.md ( #12997 )
...
Update PodPriority feature to beta since v1.11
2019-03-07 15:56:04 -08:00
gml3ff
2cbf05a484
Included link to official Datadog Docs ( #12988 )
...
Current docs page didn't include link to Datadog docs page on setting up the agent with a DaemonSet.
2019-03-07 15:52:03 -08:00
Oussema CHERNI
20519f1d92
Fix broken links for CSI docs ( #12984 )
2019-03-07 15:50:04 -08:00
Tim Bannister
a8fed37937
Tweaks to write K8s as proper noun ( #12979 )
...
* Expand k8s abbreviation
* Capitalize K8s in table header
2019-03-07 15:48:06 -08:00
Zoltan
d5fc7c3bb8
Update deprecated link to Container Runtime Interface ( #12957 )
2019-03-07 15:38:06 -08:00
Rajakavitha1
f797f1b5ac
Update building-from-source.md ( #12946 )
...
Added the attribute: content_template: templates/concept
Because the content was not appearing in: https://kubernetes.io/docs/setup/release/building-from-source/
2019-03-07 15:34:05 -08:00
Draven
966e56f32f
doc: remove extra used in job document ( #12945 )
2019-03-07 15:30:11 -08:00
Mizuki Urushida
98d1ab4c92
Fix indentation of EncryptionConfiguration sample ( #12876 )
2019-03-07 15:04:10 -08:00
Marc Boorshtein
ae64653e94
Updated link to page ( #12862 )
...
We've redone OpenUnison's k8s integration to provide multiple "spins". We created a new page to point users to the GitHub repo that matches the "spin" they're looking for.
2019-03-07 14:54:07 -08:00
YouenZeng
d88352b000
Fix Powershell script issue ( #12858 )
...
Fix syntax issue of Powershell script, update environment key to KUBECONFIG
2019-03-07 14:50:13 -08:00
sureshpalemoni
273f3fa713
Change in Storage Value in Example Scenario ( #12831 )
...
In the calculation of this `Allocatable` will be `14.5 CPUs`, `28.5Gi` of memory and
`88Gi` of local storage. - It was 98Gi for storage instead of 88Gi which is derived after negating System-Reserved+Kube-reserved+eviction+hard
2019-03-07 14:42:07 -08:00
Michal Bryc
b58b88df47
Update Link to .spec details ( #12886 )
...
The [old URL](https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md#spec-and-status ) now consists of a page that says the new URL is https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status , so let's just go ahead and link to the new URL directly :)
2019-03-07 14:34:04 -08:00
Dani Comnea
8d4bd9c1fe
Add code fencing example in the style guidlines ( #12783 )
...
* Add code fencing example in the style guidlines
* Add a period
2019-03-07 14:32:06 -08:00
Nat Welch
a21bbe7cf8
Update connect-applications-service.md ( #12924 )
...
Fix a 404 link
2019-03-07 14:30:06 -08:00
Dani Comnea
4bd46900b2
Update debug-pod-replication-controller task file and fix the kubectl grep ( #12797 )
2019-03-07 14:24:12 -08:00
Slava Semushin
acc4c33888
pod-security-policy.md: update to use PSP from policy/v1beta1 and fix a broken link. ( #12768 )
2019-03-07 14:16:07 -08:00
Anna Nguyen
d110471a35
Clarified step of getting Kubernetes cluster name; fixed quoting in c… ( #12718 )
...
* Clarified step of getting Kubernetes cluster name; fixed quoting in command that sets `APISERVER`.
Need to set `CLUSTER_NAME` before using it.
The single quote in the `APISERVER` command prevented the expansion of the `CLUSTER_NAME` variable.
* Remove whitespace
2019-03-07 14:12:13 -08:00
Tim Bannister
2ee8a94c5d
Switch CNI glossary entry to recommended style ( #13023 )
...
(spelled out first, then acronym in parentheses (as in original), then acronym
throughout the rest of the page/file)
2019-03-07 14:04:13 -08:00
Tim Bannister
d24278918c
Fix broken link ( #12717 )
...
Resolves #12713
2019-03-07 14:00:10 -08:00
Supriya Sirbi
09e45d42d8
Issue #12533 ( #12701 )
...
Update k8s.io/docs/tutorials/services/source-ip/
2019-03-07 13:58:13 -08:00
Damini Satya
ae355ed890
Fix #11761 - Provide clear explanation of Kubernetes deployments ( #12561 )
2019-03-07 13:54:16 -08:00
Tim Bannister
5c99d3431a
Add “app container” to glossary ( #12611 )
...
* Define "app container"
* Expand app container explanation
* Tweak wording
Co-Authored-By: Zach Arnold <me@zacharnold.org>
* Fix, wording nit
2019-03-07 09:07:01 -08:00
Neha Yadav
d3cca48e3f
Code snippents shouldn't include the command prompt ( #12779 )
2019-03-07 01:31:05 -08:00
Kaitlyn Barnard
6dd752b64e
Update pick-right-solution.md ( #12971 )
2019-03-05 06:50:40 -08:00
Tim Malone
c1dfba6305
Fix broken link in Ingress documentation ( #12974 )
2019-03-05 06:46:39 -08:00
Oussema CHERNI
234eb57360
Fix broken links for Taint and Toleration ( #12982 )
2019-03-05 06:42:31 -08:00
Karen Bradshaw
71662ad94b
fix typo in start contributing ( #12906 )
2019-02-28 20:31:51 -08:00
WanLinghao
268c9473a5
Add docs to illustrate how to schedule pod to specific node ( #12871 )
2019-02-27 21:22:19 -08:00
Justin Santa Barbara
c34527a3ed
Fix SSH tunnel links ( #12585 )
...
* Fix SSH tunnel links
* Removed reference to GKE, which seemed to prompt the initial removal.
* Fixed the link to refer back to the correct paragraph now that it exists again.
* Noted deprecation of SSH tunnels but work to create a replacement.
Fix #8262
This reverts commit 1da65603af
.
This reverts commit b8b71b6845
.
* Update master-node-communication.md
2019-02-27 21:18:39 -08:00
Dani Comnea
fb4c7d138f
Update the fine-parallel-processing-work-queue.md task file to remove $ and also remove text which is not appropiate for end user ( #12793 )
2019-02-27 21:14:58 -08:00
Tim Bannister
04ddaa4711
Reference glossary definitions in “Connect a Front End to a Back End Using a Service” ( #12706 )
...
* Reference terms in glossary
* Enable syntax highlighting for shell snippets
2019-02-27 21:11:22 -08:00
Dani Comnea
2f6bee10ca
Update the parallel-processing-expansion.md task file and remove $ ( #12794 )
2019-02-27 21:07:48 -08:00
Guido García
3999608ca6
docs: update acs-engine -> aks-engine ( #12804 )
...
* docs: update acs-engine -> aks-engine
acs-engine has been deprecated by Microsoft in favor of aks-engine
* chore: PR feedback
* fix missing AKS
2019-02-27 21:04:10 -08:00
Misty Linville
928f7094cb
Small refactor of Custom Resources topic ( #12502 )
...
- Adjusts levels
- Removes some obsolete info
- Rewrite of some of the intro material
2019-02-27 20:53:31 -08:00
makocchi
235f6f6d99
apply content_template and follow the style guide ( #12759 )
2019-02-27 20:42:57 -08:00
Tim Bannister
b8ad490a80
List supported protocols for Service ( #12669 )
...
Tidy up protocol support to show that TCP and UDP have support in
stable, whereas SCTP support is in alpha. For HTTP, direct users to
read up on Ingress instead.
2019-02-27 20:25:24 -08:00
Tim Bannister
96a5f3f970
Move Docker credentials import to task documentation ( #12668 )
...
* Move docker credentials import to task documentation
Relevant to #12072
* Call out helpful note about per-namespace secrets
2019-02-27 20:21:48 -08:00
Dani Comnea
f0d8c8a79c
Update debug-service.md's tasks file to remove $ from kubectl and turn some questions into bullet list ( #12798 )
2019-02-27 18:07:46 -08:00
Cody Clark
0bbe2db0be
Fix Ingress callouts, links, nav, and templating ( #12720 )
...
* Fix Ingress callouts, links, nav, and templating
* Update ingress.md
* Update ingress-minikube.md
* Delete .md that caused 404
* Delete .md that caused 404
* Update ingress-controllers.md
* Update ingress-minikube.md
* spell check pass
* Update ingress.md
* Update ingress-minikube.md
2019-02-27 15:15:30 -08:00
Dani Comnea
ab5e8c0d65
Fix the borken link in kubelet-integration.md page ( #12864 )
2019-02-27 11:49:13 -08:00
Tim Bannister
79b182529e
Adjust for Minikube running RBAC by default ( #12851 )
2019-02-27 09:10:29 -08:00
Damini Satya
8598dc5fb7
Fix #12764 - Update troubleshooting-kubeadm doc ( #12825 )
2019-02-27 03:22:15 -08:00
Dani Comnea
943429988d
Add the meeting calendar to the contrib docs ( #12855 )
2019-02-27 03:17:13 -08:00
makocchi
769c38cda3
remove command prompts and deprecated note ( #12870 )
2019-02-26 22:02:09 -08:00
Himanshu Pandey
84a840887a
Removed the redundant text ( #12868 )
2019-02-26 17:39:39 -08:00
Roy Lenferink
5bf8d70adf
Removed duplicate 'Note' keyword ( #12833 )
2019-02-25 15:40:20 -08:00
Tim Bannister
e176143ab1
Tidy install guide for container runtimes ( #12704 )
...
* Use feature-state note for CRI
* Note applicability to Linux hosts
* Explain cgroup ("control group")
* De-emphasize cgroup details
The individual runtime install steps already take account of this
advice.
2019-02-25 08:37:39 -08:00
Rastislav Szabo
e17be7dcb3
Add Contiv-VPP CNI instructions ( #12822 )
2019-02-25 04:57:00 -08:00
Linus Lee
924d764233
Fix bugs about kubeadm upgrading. ( #12809 )
...
* Fix bug about kubeadm upgrading
It will lead to the following error if using `yum upgrade -y kubeadm --disableexcludes=kubernetes` command:
<https://serverfault.com/questions/943696/fatal-unexpected-error-when-reading-kubeadm-config-configmap-clusterconfigurat >
Running `yum upgrade -y kubeadm --disableexcludes=kubernetes` command will upgrade the kubeadm to v1.13 but kubeadm v1.13 could not upgrade the v1.12 kubeadm cluster.
* Update kubeadm-upgrade-1-12.md
* Update kubeadm-upgrade-1-12.md
* Update kubeadm-upgrade-1-12.md
2019-02-24 20:14:42 -08:00
Frederiko Costa
252f4d5261
add --csr-only option on kubeadm ( #12766 )
...
* add --csr-only option
The flag `--use-csr` is no longer available as of 1.13 on. Got replaced by `--csr-only`.
* replace deprecated kubeadm cert renewal flag
2019-02-24 20:06:22 -08:00
Art
27b9422c8f
Revising bluemix.net links to cloud.ibm.com ( #12792 )
...
* Revising bluemix.net links to cloud.ibm.com
* bluemix.net links are deprecated and no longer updated
* updated to new cloud.ibm.com link style
* Removing blog content
2019-02-24 05:28:25 -08:00
Renze Yu
224cebb90b
fix command in deployment.md ( #12776 )
2019-02-22 03:40:13 -08:00
Hongbin Mao
bc9235fa4b
Update horizontal-pod-autoscale-walkthrough.md ( #12777 )
2019-02-22 03:13:18 -08:00
Neha Yadav
eaf7f1cbba
Use card based layout ( #12752 )
2019-02-21 19:43:04 -08:00
June Yi
8e5d7e4829
Make k8s.io/docs/home to support i18n ( #12570 )
...
* Make k8s.io/docs/home to support i18n
* Apply kbhawkey's review comment
2019-02-21 08:24:20 -08:00
Dani Comnea
53edccb6d1
Replace shortcode code with codenew for en lang ( #12744 )
2019-02-21 06:24:15 -08:00
Qiming
6784b5dfd8
Revert "Update dns-pod-service.md ( #10788 )" ( #12727 )
...
This reverts commit 2ebcf10831
.
2019-02-21 01:34:40 -08:00
Meng Yang
b4f547e2eb
add baidu cloud provider information ( #12738 )
2019-02-21 01:23:51 -08:00
Daniele Polencic
66683ea82b
Added Learnk8s Academy as online training offering ( #12737 )
...
* Added Learnk8s Academy as online training offering
* Rearranged in alphabetical order
* Renamed
2019-02-20 06:57:11 -08:00
Chazzledazzle1
31b3e8596f
New Linux Academy Content Added ( #12711 )
...
Edit: Listed courses in alphabetical order & removed UTM from links.
2019-02-19 20:54:20 -08:00