Kubernetes Prow Robot
2ad5089ee0
Merge pull request #22963 from Arhell/fix-typo
...
fix typo
2020-08-05 04:44:28 -07:00
lostsquirrel
8f299dfc70
ADD missing space
...
add possible missing space
2020-08-05 16:24:48 +08:00
Ray
0e452fed03
Fix links in what's next section
...
1. Kubernetes control plane -> /docs/reference/glossary/?all=true#term-control-plane
2. Kubernetes objects -> /docs/concepts/overview/working-with-objects
/docs/reference/glossary/?all=true#term-control-plane should be
replaced into a new page talking about control plane when exists.
2020-08-05 13:04:16 +08:00
Ray
9f9b714b63
Fix control loop hyperlink
...
should point to /docs/concepts/architecture/controller
2020-08-05 13:03:25 +08:00
Qiming Teng
b4189b5800
[zh] Fix links in concepts section (5)
2020-08-05 11:55:04 +08:00
Kubernetes Prow Robot
6126c42ba1
Merge pull request #22683 from MikeSpreitzer/doc-health-for-strangers
...
Document the health-for-strangers workaround
2020-08-04 16:04:28 -07:00
Arhell
f65ffd7a95
fix typo
2020-08-05 00:23:24 +03:00
Tabitha Sable
aa8e0d6677
Correct Privilege Escalation section
2020-08-04 14:23:42 -05:00
TAKAHASHI Shuuji
1eb3ee27e5
Remove the toc shortcode from concepts/services-networking/network-policies.
2020-08-04 10:45:15 +09:00
lopes22
e563940013
Update pod-lifecycle.md
2020-08-03 21:11:55 -04:00
Savitha Raghunathan
53c71ad3f9
Merge remote-tracking branch 'upstream/master' into dev-1.19
2020-08-03 16:09:39 -04:00
dba-git
eb0a35821d
grammar and syntax errors
2020-08-03 14:58:55 +02:00
vincentcui
9906576106
update default config for Openstack Cloud Controller Manager since v1.17.0 version release
...
Refer: https://github.com/kubernetes/cloud-provider-openstack/releases/tag/v1.18.0
Refer: 994df0e706
2020-08-03 12:09:50 +08:00
Qiming Teng
c8f4704873
Fix links in concepts section (2)
2020-08-02 09:11:14 +08:00
Kubernetes Prow Robot
78e997cf3f
Merge pull request #22655 from MikeSpreitzer/doc-new-apf-metrics
...
Document new API Priority and Fairness metrics
2020-08-01 16:29:40 -07:00
Kubernetes Prow Robot
e4f6797510
Merge pull request #22557 from tengqm/fix-links-concepts
...
Fix links in concepts section
2020-08-01 15:43:40 -07:00
Eric Pederson
19a8bbc82b
Add non-exposed Pod DNS name ( #22797 )
...
* Add Pod DNS name
I could not get the hostname/subdomain example to work. For example:
```
$ kubectl describe svc busybox1
Name: busybox1
Namespace: default
Labels: name=busybox
Annotations: <none>
Selector: name=busybox
Type: ClusterIP
IP: 10.109.13.10
Port: <unset> 9000/TCP
TargetPort: 9000/TCP
Endpoints: 172.17.0.6:9000
Session Affinity: None
Events: <none>
$ kubectl get ep busybox1
NAME ENDPOINTS AGE
busybox1 172.17.0.6:9000 4m5s
$ kubectl get pod busybox1 -o jsonpath="{.metadata.labels} {.spec.hostname} {.spec.subdomain}"
map[name:busybox] busybox-1 default-subdomain
$ kubectl exec busybox -- nslookup busybox-1.default-subdomain.default.svc.cluster.local
nslookup: can't resolve 'busybox-1.default-subdomain.default.svc.cluster.local'
Server: 10.96.0.10
Address 1: 10.96.0.10 kube-dns.kube-system.svc.cluster.local
command terminated with exit code 1
```
* Update content/en/docs/concepts/services-networking/dns-pod-service.md
Co-authored-by: Tim Bannister <tim@scalefactory.com>
* Update content/en/docs/concepts/services-networking/dns-pod-service.md
Co-authored-by: Tim Bannister <tim@scalefactory.com>
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-08-01 15:39:41 -07:00
TAKAHASHI Shuuji
36d9239fb1
Fix broken links to pages under /en/docs/tasks/administer-cluster/manage-resources/
2020-08-01 17:45:36 +09:00
Mike Spreitzer
499d0f4df1
Tweaked wording and added codenew example re health-for-strangers
2020-07-31 15:30:57 -04:00
Mike Spreitzer
8250aa2df0
Tweak APF metric doc in response to review
2020-07-31 15:26:47 -04:00
Kubernetes Prow Robot
af4e2fdf2b
Merge pull request #22712 from javidiaz/alphanoticefeature
...
Adding feature status and prerequisite to new feature.
2020-07-28 05:19:08 -07:00
Savitha Raghunathan
e2a861c2f9
Merge remote-tracking branch 'upstream/master' into dev-1.19
2020-07-27 19:10:42 -04:00
micnncim
0e1678f78b
Fix typo in pod-lifecycle.md
2020-07-28 04:35:12 +09:00
Eric Briand
052b7fb852
Renamed super.mycompany.com into images.my-company.example
2020-07-27 16:09:07 +02:00
Qiming Teng
0bdcd44e6b
Replace reference to redirect entries (1)
...
We are referencing the redirect entries in the docs, at many places.
These references should be updated to the correct content page.
2020-07-27 13:22:53 +08:00
Kubernetes Prow Robot
b2b2f055d8
Merge pull request #22627 from uthark/patch-1
...
Fixed typo in feature gate name.
2020-07-26 20:22:16 -07:00
Tim Bannister
49eee8fd3d
Revise Pod concept ( #22603 )
...
* Revise Pod concept
Adapt the existing Pod documentation to suit the Docsy theme, by
promoting the Pod concept itself to /docs/concepts/workloads/pods/
Following on from this, update the Pod Lifecycle page to cover the
lifecycle of a Pod and follow on directly from the Pod concept,
for readers keen to understand things in detail.
This change also removes the automatic contents list from the Pod
overview page. Instead, the new page links to all the pages
inside the Pod section.
* Update links to Pod concept
Link to updated content
* Incorporate Pod concept suggestions
Co-authored-by: Celeste Horgan <celeste@cncf.io>
* Revise StatefulSet suggestion for Pod concept
Co-authored-by: Celeste Horgan <celeste@cncf.io>
Co-authored-by: Celeste Horgan <celeste@cncf.io>
2020-07-26 20:18:16 -07:00
Kubernetes Prow Robot
81e9489f9a
Merge pull request #21767 from OriHoch/patch-1
...
volume_attributes is now volume_context in CSI spec
2020-07-26 19:50:16 -07:00
Kubernetes Prow Robot
9880cbd671
Merge pull request #22318 from tengqm/fix-19996
...
Fix pages that reference removed API groups
2020-07-26 19:38:18 -07:00
Kubernetes Prow Robot
46daba41aa
Merge pull request #22651 from MikeSpreitzer/doc-apf-debug
...
Document APF debug URL paths
2020-07-26 19:04:16 -07:00
Kubernetes Prow Robot
cc78d30459
Merge pull request #22702 from ebriand/patch-4
...
Use more real container examples
2020-07-26 18:52:17 -07:00
Naoki Oketani
7e10eb67da
paraphrase master to control plane
2020-07-26 20:15:28 +09:00
Javier Diaz-Montes
6b0192ef72
Adding feature status and prerequisite to new feature.
2020-07-24 12:56:47 -04:00
Eric Briand
39ad302c82
Use more real container examples
2020-07-24 13:54:08 +02:00
Mike Spreitzer
b2f5fbeaac
Document the health-for-strangers workaround
...
.. to issue #93359
2020-07-24 00:18:39 -04:00
Mike Spreitzer
7080355d10
Improve doc of /debug/api_priority_and_fairness/dump_requests
...
Include a non-phantom line.
Document the phantom lines (these are a bug, but not fixed yet, so
need to be documented).
2020-07-23 11:48:23 -04:00
Kubernetes Prow Robot
70198b3001
Merge pull request #22667 from Tej-Singh-Rana/k8s-tej
...
Fixed spell error
2020-07-23 05:17:39 -07:00
Tej-Singh-Rana
7ecf3561c0
Fixed spell error
2020-07-23 17:31:16 +05:30
Mike Spreitzer
dc432198e5
Document APF debug URL paths
...
Documented the debug paths introduced by #90967
2020-07-23 00:22:34 -04:00
Mike Spreitzer
800a602e36
Document new API Priority and Fairness metrics
...
Also brush up the descriptions of some of the older metrics.
2020-07-22 21:19:29 -04:00
Kubernetes Prow Robot
67a4f7733c
Merge pull request #22619 from angelbarrera92/patch-1
...
typo clusers -> clusters
2020-07-22 09:12:06 -07:00
Kubernetes Prow Robot
44db0787a9
Merge pull request #22314 from tengqm/remove-poseidon
...
Remove Poseidon page
2020-07-22 05:34:05 -07:00
Renaud Gaubert
bbe4de82e1
Add DisableAcceleratorUsageMetrics feature flag
...
Signed-off-by: Renaud Gaubert <rgaubert@nvidia.com>
2020-07-21 21:17:24 +00:00
Oleg Atamanenko
e5e0faf011
Fixed typo in feature gate name.
...
Fixed typo.
related PR: https://github.com/kubernetes/kubernetes/pull/86377/
2020-07-21 12:01:45 -07:00
Ángel Barrera
27c5df83f8
typo clusers -> clusters
...
FIX a typo in clusers -> clusters
2020-07-21 13:03:00 +02:00
Kubernetes Prow Robot
6f65a89c1a
Merge pull request #22282 from sozercan/patch-2
...
Remove container level supplementalGroups and fsgroup from PSP standards doc
2020-07-20 18:55:14 -07:00
Kubernetes Prow Robot
3841d72380
Merge pull request #21278 from hasheddan/seccomp
...
Add documentation for Seccomp GA
2020-07-20 12:14:39 -07:00
hasheddan
3ad7ea77f1
Add documentation for generally available seccomp functionality
...
Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
2020-07-20 13:51:17 -05:00
Savitha Raghunathan
53f2d23359
resolving conflicts
2020-07-19 19:15:36 -04:00
Michelle Au
8a53eed8d8
Update Azure disk feature gates for 1.19 beta
2020-07-16 09:55:20 -07:00
Kubernetes Prow Robot
2f075d2930
Merge pull request #22446 from jayunit100/patch-3
...
Update statefulset.md
2020-07-16 08:53:42 -07:00
Kubernetes Prow Robot
c7285443ee
Merge pull request #21634 from pohly/kubernetes-1-19-features
...
storage: CSIStorageCapacity
2020-07-16 03:53:41 -07:00
Kubernetes Prow Robot
49bd40e6d3
Merge pull request #21115 from Huang-Wei/1.19-pts-stable
...
Promote PodTopologySpread to stable in 1.19
2020-07-16 03:43:42 -07:00
Patrick Ohly
19b8f8421f
storage: CSIStorageCapacity
...
This is the initial documentation for one new feature:
- https://github.com/kubernetes/enhancements/issues/1472
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-07-16 08:52:08 +02:00
jay vyas
3e33f7fd7c
Update content/en/docs/concepts/workloads/controllers/statefulset.md
...
Co-authored-by: Celeste Horgan <celeste@cncf.io>
2020-07-15 19:59:52 -04:00
Kubernetes Prow Robot
79b9438d8b
Merge pull request #21444 from xing-yang/csi_migration_1.19
...
Add doc for vSphere CSI Migration
2020-07-15 16:22:35 -07:00
Wei Huang
a886f56819
fixup: address comments
2020-07-15 12:22:36 -07:00
Wei Huang
b74f399e5e
Promote PodTopologySpread to stable in 1.19
2020-07-15 10:53:29 -07:00
Kubernetes Prow Robot
38b7408b70
Merge pull request #22529 from sftim/20200715_tidy_endpointslice_concept
...
Tidy EndpointSlice concept
2020-07-15 10:42:38 -07:00
Kubernetes Prow Robot
3f7af5daaf
Merge pull request #22438 from pohly/generic-ephemeral-volumes
...
storage: GenericEphemeralVolume
2020-07-15 09:48:38 -07:00
jay vyas
efa6ab5347
Update statefulset.md
2020-07-15 12:39:52 -04:00
Patrick Ohly
4401fd81d7
Update content/en/docs/concepts/storage/ephemeral-volumes.md
...
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-07-15 18:28:34 +02:00
xing-yang
d2c58dcd0f
Add doc for vSphere CSI Migration
2020-07-15 15:02:30 +00:00
Tim Bannister
591d3c15cb
Tidy EndpointSlice concept
2020-07-15 10:36:21 +01:00
Qiming Teng
31730ce174
Use inline links when possible
...
This is in prep for link checker. By using inline links everywhere, we:
- reduce the risk of dangling, missing, unused links as you can see from the PR;
- simplify the link checker logic (under development).
2020-07-15 17:09:32 +08:00
Kubernetes Prow Robot
6af7fec403
Merge pull request #22522 from sftim/20200715_tidy_ingress_concept_for_ga
...
Tidy ingress concept for GA
2020-07-14 21:20:37 -07:00
Tim Bannister
15ecffa4d0
Tidy Ingress concept
...
Update documentation for stable Ingress resource (tidying)
2020-07-15 00:42:38 +01:00
Franco Morinigo
54b80dc136
Add target nodes AWS ELB annotation documentation
2020-07-14 20:11:45 -03:00
Kubernetes Prow Robot
6ec8665bba
Merge pull request #22429 from Huang-Wei/postfilter-doc
...
Document the changes of scheduler PostFilter extension point
2020-07-14 13:21:22 -07:00
Patrick Ohly
25d50c17b5
Update content/en/docs/concepts/storage/ephemeral-volumes.md
...
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-07-14 20:47:39 +02:00
Kubernetes Prow Robot
b7471e9c0e
Merge pull request #22038 from adtac/adtac/reserve-dev-1.19
...
scheduling-framework.md: update Reserve and Unreserve descriptions
2020-07-14 11:03:21 -07:00
Kubernetes Prow Robot
713603e146
Merge pull request #21607 from klueska/upstream-topology-manager-docs-update
...
Topology Manager docs update for 1.19
2020-07-14 10:45:21 -07:00
Kubernetes Prow Robot
2ea1d221c7
Merge pull request #21453 from denkensk/update-non-preempt-beta
...
Update non-preempting option Doc
2020-07-14 10:11:21 -07:00
Kubernetes Prow Robot
b9a5adeedd
Merge pull request #21589 from robscott/endpointslice-1.19
...
Updating EndpointSlice documentation for Kubernetes 1.19
2020-07-14 09:41:21 -07:00
Kubernetes Prow Robot
bf022d4790
Merge pull request #21689 from alculquicondor/default-spreading
...
Docs for new default PodTopologySpread functionality and gate
2020-07-14 09:37:22 -07:00
Kubernetes Prow Robot
61ec4a43a9
Merge pull request #21202 from serathius/doc
...
Document Structured Logging Enhancement
2020-07-14 09:09:21 -07:00
Patrick Ohly
5981f4f860
storage: GenericEphemeralVolume
...
This is the initial documentation for one new feature:
- https://github.com/kubernetes/enhancements/issues/1698
A new page gets created for different ephemeral volumes because the
relationship between them needs to be explained.
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-07-14 10:32:53 +02:00
Marek Siarkowicz
f9833ee09a
Document structured logging
...
* Separate system logs from Logging Architecture as it mainly covers application logging
* Rename "Metics For The Kubernetes Control Plane" to "Metrics For The Kubernetes System Components" as it covers non-control plane components
* Rename files to `system-logs.md` and `system-metrics.md`
* Remove trailing whitespaces
* Add sections about Klog and Structured Logging
Co-authored-by: Celeste Horgan <celeste@cncf.io>
Co-authored-by: Zach Corleissen <zacharysarah@users.noreply.github.com>
Co-authored-by: Tim Bannister <tim@scalefactory.com>
Co-authored-by: Paweł Kępka <pkepka@google.com>
2020-07-14 00:39:21 +02:00
Rob Scott
028af758bb
Updating EndpointSlice documentation for Kubernetes 1.19
2020-07-13 13:25:00 -07:00
Kubernetes Prow Robot
82ac6d49fa
Merge pull request #21590 from robscott/ingress-1.19
...
Updating Ingress docs for 1.19
2020-07-13 11:45:21 -07:00
Aldo Culquicondor
91b83cf906
Docs revision
...
Signed-off-by: Aldo Culquicondor <acondor@google.com>
2020-07-13 14:30:00 -04:00
Wei Huang
9959ffc513
remove release notes section
2020-07-13 09:52:30 -07:00
Wei Huang
481aa2cce0
Remove the "How to disable preemption" stanza and rewordings
2020-07-13 09:51:12 -07:00
Wei Huang
e2fd28a35b
Document the changes of scheduler PostFilter extension point
2020-07-13 09:51:12 -07:00
Kubernetes Prow Robot
6f71476139
Merge pull request #22484 from jjmengze/patch-4
...
correct the sample content
2020-07-13 08:32:32 -07:00
Kubernetes Prow Robot
9e0d6d8110
Merge pull request #22399 from rmauge/patch-1
...
Updates for minor spelling correction
2020-07-13 08:30:33 -07:00
Kevin Klues
7b270b47bc
Add updated documentation about the device plugin interface
...
Signed-off-by: Kevin Klues <kklues@nvidia.com>
2020-07-13 16:54:52 +02:00
Kubernetes Prow Robot
ea75275dcc
Merge pull request #22457 from ctron/patch-1
...
Fix the example values in the first examples
2020-07-12 19:08:32 -07:00
MengZeLee
c645517606
correct the sample content
2020-07-13 09:51:36 +08:00
Kubernetes Prow Robot
6a93ddf4ba
Merge pull request #22445 from piazera/patch-1
...
Update deployment.md
2020-07-12 08:08:32 -07:00
jay vyas
167746be6f
Update content/en/docs/concepts/workloads/controllers/statefulset.md
...
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-07-12 08:20:25 -04:00
Kubernetes Prow Robot
46bf00b75b
Merge pull request #22452 from leon-barrett/patch-1
...
Fix description of back-off count reset
2020-07-11 11:21:21 -07:00
Leon Barrett
0f854ec760
Update content/en/docs/concepts/workloads/controllers/job.md
...
Co-authored-by: Tim Bannister <tim@scalefactory.com>
2020-07-11 10:45:07 -07:00
Kubernetes Prow Robot
9866538717
Merge pull request #22454 from djbrown/portworx-patch-en
...
fix portworx io priority parameter name [EN]
2020-07-11 00:01:21 -07:00
Leon Barrett
7b92c46503
Fix description of back-off count reset
...
By carefully reading the code in `job_controller.go`, I finally understood that
the back-off count is reset when `forget` is true, which happens when `active`
or `successful` changes without any new failures right at the moment. That
happens in this code:
dd649bb7ef/pkg/controller/job/job_controller.go (L588)
That behavior does not match what this document says. My change fixes the doc
to match the code.
It might be better to fix the behavior to match the doc, since the behavior is
kind of weird to describe. But I imagine that the Kubernetes team will need to
consider factors I'm not aware of before deciding to change job back-off
behavior, so I am not going to the effort of proposing a change like that.
2020-07-10 14:10:05 -07:00
Kubernetes Prow Robot
d6b7bf5f38
Merge pull request #21588 from robscott/app-protocol-1.19
...
Updating AppProtocol docs for 1.19 release
2020-07-10 13:49:49 -07:00
Jens Reimann
f4d296d1c3
Fix the example values in the first examples
...
In the lower part of the document `instance` is derived from the `name` field. However, in the beginning of the document the value of the `instance` field is aligned with the `part-of` field. Which seems wrong, reading through the rest of the page.
Signed-off-by: Jens Reimann <jreimann@redhat.com>
2020-07-10 12:30:09 +02:00
Daniel Brown
a644a09ec7
fix portworx io priority parameter name
...
update `io_priority` to `priority_io`
see https://docs.portworx.com/portworx-install-with-kubernetes/storage-operations/create-pvcs/dynamic-provisioning/
Name: priority_io
Description: IO Priority: low|medium|high
Example: priority_io: “high”
2020-07-10 10:51:21 +02:00
Rob Scott
4e6aa1b43b
Updating AppProtocol docs for 1.19 release
2020-07-09 18:31:43 -07:00
Rob Scott
b8d8b9984d
Fixing some issues in Ingress docs
2020-07-09 17:59:24 -07:00