Commit Graph

4573 Commits

Author SHA1 Message Date
Kubernetes Prow Robot 664464806c
Merge pull request #22470 from tengqm/fix-19985
Tweak paragraph to kill orphaned fragment
2020-08-06 08:51:42 -07:00
Kubernetes Prow Robot 6671803603
Merge pull request #22974 from Evalle/DOC-22953
ISSUE-22953: add missing information about etcd images
2020-08-05 16:04:54 -07:00
Kubernetes Prow Robot 6fa854c10a
Merge pull request #22971 from lostsquirrel/patch-3
ADD missing space
2020-08-05 05:14:28 -07:00
Kubernetes Prow Robot 2ad5089ee0
Merge pull request #22963 from Arhell/fix-typo
fix typo
2020-08-05 04:44:28 -07:00
Evgeny Shmarnev b4481e6afc ISSUE-22953: add missing information about etcd images 2020-08-05 11:32:25 +02:00
lostsquirrel 8f299dfc70
ADD missing space
add possible missing space
2020-08-05 16:24:48 +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
Kubernetes Prow Robot 23c27ebe69
Merge pull request #22925 from jimoosciuc/patch-1
Fixed an issue on custom-resource-definition-versioning.md
2020-08-04 10:18:22 -07:00
Kubernetes Prow Robot bdb49489e1
Merge pull request #22949 from aashu16/patch-1
Fixes broken link to website issues
2020-08-04 02:48:19 -07:00
Kubernetes Prow Robot 5adeb5d5a9
Merge pull request #22945 from shuuji3/en/remove-toc-from-network-policies
Remove a toc shortcode from concepts/services-networking/network-policies
2020-08-04 02:46:20 -07:00
Aashu Anshuman 1732bbd93d
Fixes broken link to website issues 2020-08-04 10:21:19 +01:00
jimoosciuc 5c6727bc1a Update custom-resource-definition-versioning.md
Fixed an issue on CustomResourceDefinition yaml
2020-08-04 17:00:03 +08:00
TAKAHASHI Shuuji 1eb3ee27e5 Remove the toc shortcode from concepts/services-networking/network-policies. 2020-08-04 10:45:15 +09:00
Kubernetes Prow Robot 34b35738a4
Merge pull request #22832 from cofyc/patch-3
Fix the markdown format in authorization.md
2020-08-03 18:44:19 -07:00
Yecheng Fu ee4aa53115 Fix the command in authorization.md 2020-08-04 09:08:36 +08:00
Kubernetes Prow Robot 243e799580
Merge pull request #22919 from inductor/update_kubeadm_installation
Update kubeadm installation
2020-08-03 12:39:34 -07:00
craigbox f5613c1513
Add blog post for 1.18 release interview (#22882)
* Add 1.18 release interview

* Emdashen all the em dashes

* Ok, not *all* the dashes

* downcaseandremovespacesfrommrbobbytables
2020-08-03 08:45:40 -07:00
Qiming Teng 031747e460 Tweak paragraph to kill orphaned fragment 2020-08-03 21:18:55 +08:00
Kubernetes Prow Robot 879651c83b
Merge pull request #22606 from zacharysarah/update-l10n-contrib
Update the Slack channel creation example
2020-08-03 04:53:42 -07:00
Kubernetes Prow Robot 20a1a5cbf0
Merge pull request #22902 from kubernetes/jimangel-prow-commands-1
adding helpful prow commands for PR wranglers
2020-08-03 04:51:40 -07:00
inductor bae154edd3 Update kubeadm installation 2020-08-03 04:16:15 +09: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 0e3bc65fab
Merge pull request #22775 from tengqm/zh-contrib-links
[zh] Fix links in contribute section
2020-08-01 16:19:41 -07:00
Kubernetes Prow Robot f7e8802ef7
Merge pull request #22792 from ZhiFeng1993/add-kubeadm-troubleshooting-item
Add troubleshooting item for kubeadm cluster upgrade
2020-08-01 16:17:40 -07:00
Kubernetes Prow Robot 893f572a2c
Merge pull request #22818 from apelisse/improve-schema-description
Clarify that CRDs can use the schema annotation
2020-08-01 16:07:40 -07:00
Jim Angel 259a2e147d
adding helpful prow commands for PR wranglers
I found myself adding the following labels on a few PRs.
2020-08-01 18:00:44 -05: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
Kubernetes Prow Robot dcd9374466
Merge pull request #22816 from McCoyAle/statefulset
Update command output
2020-08-01 15:29:40 -07:00
Kubernetes Prow Robot c67b812cf1
Merge pull request #22825 from npu21/blog-post
clean up extra h1 heading in blog post
2020-08-01 15:19:40 -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
ZhiFeng1993 876e66a45a Add troubleshooting item for kubeadm cluster upgrade 2020-07-30 11:07:36 -07:00
Zhang Yong 707ced11ab clean up extra h1 heading in blog post 2020-07-30 17:42:51 +08:00
Antoine Pelisse 0099629817 Clarify that CRDs can use the schema annotation 2020-07-29 14:23:43 -07:00
Alexandra McCoy 0f5787d434 Updated command output 2020-07-29 13:27:22 -04:00
Kubernetes Prow Robot fbadc3be2e
Merge pull request #22787 from sftim/20200727_automatically_detect_mermaid_shortcode
Automatically detect MermaidJS shortcode
2020-07-29 10:01:49 -07:00
Kubernetes Prow Robot d31b79cc15
Merge pull request #22743 from tabbysable/patch-1
Clarify meaning of group
2020-07-27 19:41:08 -07:00
Kubernetes Prow Robot e1485cd5d7
Merge pull request #22773 from tegonal/doc-auth
doc(auth): typo
2020-07-27 15:06:10 -07:00
micnncim 0e1678f78b Fix typo in pod-lifecycle.md 2020-07-28 04:35:12 +09:00
Tim Bannister 90b85c7a5e Automatically detect MermaidJS shortcode
Rather than requiring metadata set in a page's front matter,
automatically detect when detect when a page relies on MermaidJS.
2020-07-27 17:37:47 +01:00
Kubernetes Prow Robot e16b0f7212
Merge pull request #22716 from craigbox/patch-18
Add blog post for 1.17 release interview
2020-07-27 09:14:19 -07:00
Eric Briand 052b7fb852
Renamed super.mycompany.com into images.my-company.example 2020-07-27 16:09:07 +02:00
Kubernetes Prow Robot 1b0c69187c
Merge pull request #21895 from mokua/patch-7
Update audit.md
2020-07-27 06:42:20 -07:00
Richard Mokua 9c24d96885
Update audit.md
volume mount indentation correction
2020-07-27 12:54:43 +02:00
Qiming Teng efe536f45a [zh] Fix links in contribute section
This PR fixes bad links found in the contribute section, identified via:
```
./scripts/linkchecker.py -l zh -f /docs/contribute/**/*.md
```

Fix Summary:
Bad links pointing nowhere: 23
Links which should point to localized pages: 28
Links which should avoid redirections: 5
Unsafe links that use HTTP: 6
2020-07-27 17:58:20 +08:00
Richard Mokua 8e69d20a2f
Update audit.md
correct indentation on the policy file and log file hostPath volumes
2020-07-27 08:02:20 +02:00