Brian Grant
c98ffccc58
Merge pull request #462 from ingvagabund/secret-corrections
...
Remove "a" article in "Once the a secret is fetched, ..."
2016-05-17 09:53:53 -07:00
Brian Grant
8b210f765d
Merge pull request #473 from StephenCharles/patch-1
...
Update connecting-to-applications-port-forward.md
2016-05-17 09:53:02 -07:00
johndmulhausen
646d7084c3
Update README.md
2016-05-17 11:51:00 -05:00
Brian Grant
aea6edf47a
Merge pull request #457 from matthughes/patch-1
...
Remove 'generic' copy/paste error
2016-05-17 09:40:23 -07:00
Andrey Kurilin
0924dd341c
Add diagram for `kubectl drain` command
...
The link to diagram will be added into long description of `kubectl drain`
command.
resolves #501
2016-05-17 14:49:42 +03:00
Pau Ruŀlan
f3ffbdb7f4
Replica set clarification: no need to manipulate directly
2016-05-17 11:47:33 +02:00
Brian Grant
05b0076735
Merge pull request #508 from janetkuo/kubectl-usage-conventions
...
Adding kubectl user conventions
2016-05-16 16:37:42 -07:00
Brian Grant
60a946a285
Merge pull request #499 from kubernetes/ghodss-patch-1
...
Update pod-states.md
2016-05-16 15:31:41 -07:00
Brian Grant
0a447418af
Merge pull request #518 from KarlHerler/master
...
Fixed link rendering issue due to newline location
2016-05-16 15:28:52 -07:00
Brian Grant
e3e68854a8
Merge pull request #519 from elsonrodriguez/openstack-provider-doc-tocfix
...
Adding Guide entry for Openstack provider.
2016-05-16 15:27:57 -07:00
Karl Herler
8f171a0869
Fixed link rendering issue due to newline location
...
A newline between `[]` and `()` caused markdown rendering issues when parsed with `kramdown` (Jekyll's markdown parser) strangely enough this was not present on github.com but only on kubernetes.io.
This change moves the newline between _in_ and `rkt.go` to preserve the line length somewhat.
2016-05-16 23:01:36 +03:00
Brian Grant
3aeaaaa909
Merge pull request #74 from FujitsuEnablingSoftwareTechnologyGmbH/openstack-provider-doc
...
Add doc on OpenStack provider
2016-05-16 12:10:49 -07:00
Brian Grant
cdf13b5cc2
Merge pull request #517 from bgrant0607/master
...
Rationalize navigation
2016-05-16 11:10:39 -07:00
Brian Grant
f01a78edd0
Rationalize navigation
2016-05-16 18:07:30 +00:00
Elson O Rodriguez
1be2f231cf
Adding Guide entry for Openstack provider.
2016-05-16 09:53:32 -07:00
Sebastian
c59312bd5e
Fix kubectl commmand
2016-05-15 06:58:31 +02:00
Janet Kuo
7aa9ce389a
Adding kubectl user conventions
2016-05-13 18:20:48 -07:00
Rudi C
0700c5ca79
Update service doc with AWS ELB SSL annotations
...
Mostly the same as https://github.com/kubernetes/kubernetes/pull/25574
2016-05-13 12:01:14 -04:00
Carson A
db26b756d5
The /sys mount needs to be rw
...
Hairpin nat does not currently work unless /sys is rw. This fixes #25555 and fixes #24350
2016-05-13 09:34:43 -06:00
Brian Grant
85eba1f0b3
Merge pull request #505 from janetkuo/rc-to-deployment-docs
...
Change RC to deployments in multi-container and simple-nginx docs
2016-05-12 16:47:20 -07:00
Janet Kuo
ded5417580
Change RC to deployments in multi-container and simple-nginx docs
2016-05-12 15:35:47 -07:00
Janet Kuo
7edbc5f944
Merge pull request #463 from AdoHe/master
...
update manage deployment kubectl apply part
2016-05-12 15:20:18 -07:00
Carson A
106420a9b0
Use xargs when removing mounts
...
This avoids potential argument list limits when there are many mounts.
2016-05-12 14:02:47 -06:00
Robert Bailey
d5d46d9e0c
Merge pull request #497 from Kashomon/master
...
Update the pricing link in the hellonode guide.
2016-05-12 10:03:35 -07:00
Carson A
dae8e5f4a9
Update docker.md
...
Clean up some duplicate commands
2016-05-12 10:49:28 -06:00
Timo Derstappen
33fb9fe619
libvirt daemon error on arch
...
the virtlogd.socket is not started with the libvirtd daemon. if you enable the libvirtd.service it is linked and started on the next reboot
2016-05-12 10:29:45 +02:00
Sam Ghods
64053fd2f7
Update pod-states.md
...
Split the descriptions for LivenessProbe and ReadinessProbe into two sections - one explaining the pure technical details and the other explaining how/why you'd use them.
2016-05-11 16:52:51 -07:00
Josh Hoak
90beb3f872
Update the pricing link in the hellonode guide.
2016-05-11 15:26:56 -06:00
Davanum Srinivas
665f9c4743
Fix to ensure that ConfigMaps volume does create file(s) in container
...
Document the fix proposed originally in:
https://github.com/kubernetes/kubernetes/issues/23392#issuecomment-209663941
Tested with:
Client Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.4", GitCommit:"3eed1e3be6848b877ff80a93da3785d9034d0a4f", GitTreeState:"clean"}
Server Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.4", GitCommit:"3eed1e3be6848b877ff80a93da3785d9034d0a4f", GitTreeState:"clean"}
2016-05-11 12:39:31 -04:00
Joonathan Mägi
5c9d6060f3
Use `echo -n` for less ambiguous base64 secret example
...
One could be bitten by having unexpected newline characters in base64 encoded secrets (reference: https://github.com/kubernetes/kubernetes/issues/23404 ).
Calling `echo -n` will omit the trailing newline character.
`
The echo utility writes any specified operands, separated by single blank (` ') characters and followed by
a newline (`\n') character, to the standard output.
The following option is available:
-n Do not print the trailing newline character. This may also be achieved by appending `\c' to the end
of the string, as is done by iBCS2 compatible systems. Note that this option as well as the effect
of `\c' are implementation-defined in IEEE Std 1003.1-2001 (``POSIX.1'') as amended by Cor. 1-2002.
Applications aiming for maximum portability are strongly encouraged to use printf(1) to suppress the
newline character.
`
2016-05-11 14:33:33 +03:00
Brian Grant
b49ea146fe
Merge pull request #407 from luxas/add_other_arches_to_docker
...
Document experimental support for other architectures
2016-05-10 10:51:24 -07:00
Brian Grant
24a0f7da04
Merge pull request #350 from king6cong/docker-master-doc-flannel-fix
...
fix run flannel command
2016-05-10 10:10:29 -07:00
Brian Grant
c30af21859
Merge pull request #485 from rosskukulinski/nodejs-LTS
...
Update Node.JS examples to LTS 4.4 base image
2016-05-10 09:45:04 -07:00
Yasu
aa5d37c508
Fix typo
2016-05-10 22:13:35 +09:00
Brian Grant
ca1af06b78
Merge pull request #484 from janetkuo/deployment-doc-improve
...
Document that only pod template is considered for triggering a deployment new revision
2016-05-10 00:06:14 -07:00
Tim Hockin
00a96470e8
Merge pull request #487 from jumpkick/master
...
Add security warning: services will bind public IP
2016-05-09 22:40:42 -07:00
jumpkick
8a74351c2e
Merge pull request #1 from jumpkick/jumpkick-network-security-warning-rebase
...
Add security warning: services will bind public IP
2016-05-10 00:42:42 -04:00
jumpkick
830efa4d60
Add security warning: services will bind public IP
...
rebase of https://github.com/kubernetes/kubernetes/pull/22079 to docs branch kubernetes/kubernetes.github.io
2016-05-10 00:41:16 -04:00
Ross Kukulinski
d7c129f488
Refs #297 . Update Node.JS examples to LTS 4.4 base image
2016-05-09 22:46:29 -04:00
Janet Kuo
f80b89ca2b
Document that only pod template is considered for triggering a deployment new revision
2016-05-09 17:03:16 -07:00
Lukasz Zajaczkowski
d1962f11c0
Merge pull request #3 from elsonrodriguez/openstack-provider-doc-requirements
...
Revised requirements for OpenStack kube-up provider.
2016-05-09 08:56:02 +02:00
Elson O Rodriguez
51e89bff3b
Revised requirements for OpenStack kube-up provider.
2016-05-08 23:16:29 -07:00
Lukasz Zajaczkowski
eb784b1470
Merge pull request #2 from elsonrodriguez/openstack-provider-doc-requirements
...
Adding a list of OpenStack requirements for provider docs.
2016-05-09 07:43:52 +02:00
Andrei Burd
536dc08a5d
Fix: directory structure
2016-05-08 12:17:28 +03:00
Jan Chaloupka
407a05b6d2
Extend secrets docs with key to path mapping and automatic updates of mounted secrets.
...
Secret volume plugin has been refactored. Currently, AtomicWritter is used to project all keys.
Allowing to automatically refresh projected secrets.
2016-05-07 09:59:18 +02:00
Elson O Rodriguez
a10e81cb63
Adding a list of OpenStack requirements for provider docs.
2016-05-06 15:34:58 -07:00
sarahnovotny
f6c6fc80c5
Merge pull request #474 from timstclair/redirect
...
Forward /docs/user-guide/overview to /docs/whatisk8s
2016-05-05 16:37:10 -07:00
Tim St. Clair
e4f6f1d6e6
Forward /docs/user-guide/overview to /docs/whatisk8s
2016-05-05 15:29:18 -07:00
Brian Grant
b048578162
Merge pull request #459 from a-robinson/hellonode
...
Fix link to gcloud get-credentials docs and inline command.
2016-05-05 14:54:50 -07:00
Stephen Baldwin
b1c26e1310
Update connecting-to-applications-port-forward.md
...
Fixed invalid port typo.
2016-05-05 12:34:12 +09:00