Merge branch 'master' of https://github.com/kubernetes/kubernetes.github.io into release-1.6
* 'master' of https://github.com/kubernetes/kubernetes.github.io: (136 commits) Clarify minimum version of kubernetes supporting PSP authz Fix typo: federation-controller-mananger => federation-controller-manager Fix typo: federation-controller-mananger => federation-controller-manager fix command kubectl get svc,pod output limitrange-update doc-walkthrough-content package apt-transport-https should be installed Fix apimachinery vendored dependencies in examples_test. Delete the parameter "--google-json-key string" Removed Extra space in the KUBE2GO commit Added KUBE2GO.io fix some wrong links Update hello-minikube.md show kubectl_rollingupdate svg Fixed flag for eviction-soft. Update review-issues.md Move Guide topic: Garbage Collection. (#2488) Update source-ip.md Update source-ip.md concepts/abstractions: init containers example. ...
This commit is contained in:
@@ -47,6 +47,8 @@ clusters.
|
||||
|
||||
[KCluster.io](https://kcluster.io) provides highly available and scalable managed Kubernetes clusters for AWS.
|
||||
|
||||
[KUBE2GO.io](https://kube2go.io) get started with highly available Kubernetes clusters on multiple public clouds along with useful tools for development, debugging, monitoring.
|
||||
|
||||
[Platform9](https://platform9.com/products/kubernetes/) offers managed Kubernetes on-premises or any public cloud, and provides 24/7 health monitoring and alerting.
|
||||
|
||||
[OpenShift Dedicated](https://www.openshift.com/dedicated/) offers managed Kubernetes clusters powered by OpenShift and [OpenShift Online](https://www.openshift.com/features/) provides free hosted access for Kubernetes applications.
|
||||
@@ -62,6 +64,7 @@ few commands, and have active community support.
|
||||
- [CenturyLink Cloud](/docs/getting-started-guides/clc)
|
||||
- [IBM SoftLayer](https://github.com/patrocinio/kubernetes-softlayer)
|
||||
- [Stackpoint.io](/docs/getting-started-guides/stackpoint/)
|
||||
- [KUBE2GO.io](https://kube2go.io/)
|
||||
|
||||
### Custom Solutions
|
||||
|
||||
@@ -131,6 +134,7 @@ GKE | | | GCE | [docs](https://clou
|
||||
Stackpoint.io | | multi-support | multi-support | [docs](http://www.stackpointcloud.com) | Commercial
|
||||
AppsCode.com | Saltstack | Debian | multi-support | [docs](https://appscode.com/products/cloud-deployment/) | Commercial
|
||||
KCluster.io | | multi-support | multi-support | [docs](https://kcluster.io) | Commercial
|
||||
KUBE2GO.io | | multi-support | multi-support | [docs](https://kube2go.io) | Commercial
|
||||
Platform9 | | multi-support | multi-support | [docs](https://platform9.com/products/kubernetes/) | Commercial
|
||||
GCE | Saltstack | Debian | GCE | [docs](/docs/getting-started-guides/gce) | Project
|
||||
Azure Container Service | | Ubuntu | Azure | [docs](https://azure.microsoft.com/en-us/services/container-service/) | Commercial
|
||||
|
||||
@@ -69,6 +69,7 @@ For each host in turn:
|
||||
* SSH into the machine and become `root` if you are not already (for example, run `sudo su -`).
|
||||
* If the machine is running Ubuntu or HypriotOS, run:
|
||||
|
||||
apt-get update && apt-get install -y apt-transport-https
|
||||
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
|
||||
cat <<EOF > /etc/apt/sources.list.d/kubernetes.list
|
||||
deb http://apt.kubernetes.io/ kubernetes-xenial main
|
||||
|
||||
@@ -31,12 +31,13 @@ This will run two nginx Pods in the default Namespace, and expose them through a
|
||||
|
||||
```console
|
||||
$ kubectl get svc,pod
|
||||
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
|
||||
kubernetes 10.100.0.1 <none> 443/TCP 46m
|
||||
nginx 10.100.0.16 <none> 80/TCP 33s
|
||||
NAME READY STATUS RESTARTS AGE
|
||||
nginx-701339712-e0qfq 1/1 Running 0 35s
|
||||
nginx-701339712-o00ef 1/1 Running 0 35s
|
||||
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
|
||||
svc/kubernetes 10.100.0.1 <none> 443/TCP 46m
|
||||
svc/nginx 10.100.0.16 <none> 80/TCP 33s
|
||||
|
||||
NAME READY STATUS RESTARTS AGE
|
||||
po/nginx-701339712-e0qfq 1/1 Running 0 35s
|
||||
po/nginx-701339712-o00ef 1/1 Running 0 35s
|
||||
```
|
||||
|
||||
We should be able to access our new nginx Service from other Pods. Let's try to access it from another Pod
|
||||
|
||||
Reference in New Issue
Block a user