mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-02 06:47:34 +00:00
Rename 'portal IP' to 'cluster IP' most everywhere
This covers obvious transforms, but not --portal_net, $PORTAL_NET and similar.
This commit is contained in:
@@ -87,7 +87,7 @@ Some firewall software that uses iptables may not interact well with
|
||||
kubernetes. If you're having trouble around networking, try disabling any
|
||||
firewall or other iptables-using systems, first.
|
||||
|
||||
By default the IP range for service portals is 10.0.*.* - depending on your
|
||||
By default the IP range for service cluster IPs is 10.0.*.* - depending on your
|
||||
docker installation, this may conflict with IPs for containers. If you find
|
||||
containers running with IPs in this range, edit hack/local-cluster-up.sh and
|
||||
change the portal_net flag to something else.
|
||||
|
||||
@@ -235,7 +235,7 @@ $ mesos ps
|
||||
```
|
||||
The number of Kubernetes pods listed earlier (from `bin/kubectl get pods`) should equal to the number active Mesos tasks listed the previous listing (`mesos ps`).
|
||||
|
||||
Next, determine the internal IP address of the front end [service portal][8]:
|
||||
Next, determine the internal IP address of the front end [service][8]:
|
||||
|
||||
```bash
|
||||
$ bin/kubectl get services
|
||||
@@ -268,14 +268,14 @@ Or interact with the frontend application via your browser, in 2 steps:
|
||||
First, open the firewall on the master machine.
|
||||
|
||||
```bash
|
||||
# determine the internal port for the frontend service portal
|
||||
# determine the internal port for the frontend service
|
||||
$ sudo iptables-save|grep -e frontend # -- port 36336 in this case
|
||||
-A KUBE-PORTALS-CONTAINER -d 10.10.10.149/32 -p tcp -m comment --comment frontend -m tcp --dport 9998 -j DNAT --to-destination 10.22.183.23:36336
|
||||
-A KUBE-PORTALS-CONTAINER -d 10.22.183.23/32 -p tcp -m comment --comment frontend -m tcp --dport 9998 -j DNAT --to-destination 10.22.183.23:36336
|
||||
-A KUBE-PORTALS-HOST -d 10.10.10.149/32 -p tcp -m comment --comment frontend -m tcp --dport 9998 -j DNAT --to-destination 10.22.183.23:36336
|
||||
-A KUBE-PORTALS-HOST -d 10.22.183.23/32 -p tcp -m comment --comment frontend -m tcp --dport 9998 -j DNAT --to-destination 10.22.183.23:36336
|
||||
|
||||
# open up access to the internal port for the frontend service portal
|
||||
# open up access to the internal port for the frontend service
|
||||
$ sudo iptables -A INPUT -i eth0 -p tcp -m state --state NEW,ESTABLISHED -m tcp \
|
||||
--dport ${internal_frontend_service_port} -j ACCEPT
|
||||
```
|
||||
@@ -297,7 +297,7 @@ Now, you can visit the guestbook in your browser!
|
||||
[5]: https://google.mesosphere.com
|
||||
[6]: http://mesosphere.com/docs/getting-started/cloud/google/mesosphere/#vpn-setup
|
||||
[7]: https://github.com/mesosphere/kubernetes-mesos/tree/v0.4.0/examples/guestbook
|
||||
[8]: https://github.com/GoogleCloudPlatform/kubernetes/blob/v0.11.0/docs/services.md#ips-and-portals
|
||||
[8]: https://github.com/GoogleCloudPlatform/kubernetes/blob/v0.11.0/docs/services.md#ips-and-vips
|
||||
[9]: mesos/k8s-firewall.png
|
||||
[10]: mesos/k8s-guestbook.png
|
||||
[11]: http://mesos.apache.org/
|
||||
|
||||
Reference in New Issue
Block a user