Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
open UDP, not TCP, port 4789 for VXLAN
The TCP one could perhaps be removed; TODO test it.
  • Loading branch information
vorburger committed Dec 19, 2018
1 parent 1929bab commit b38fcde
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions prequisites-k8s-on-OpenStack.sh
Expand Up @@ -20,12 +20,14 @@ openstack security group rule create k8s-master --protocol TCP --dst-port 9090:9
openstack security group rule create k8s-master --protocol TCP --dst-port 6640:6640 --remote-ip 192.168.0.0/24
openstack security group rule create k8s-master --protocol TCP --dst-port 6653:6653 --remote-ip 192.168.0.0/24
openstack security group rule create k8s-master --protocol TCP --dst-port 4789:4789 --remote-ip 192.168.0.0/24
openstack security group rule create k8s-master --protocol UDP --dst-port 4789:4789 --remote-ip 192.168.0.0/24

openstack security group create k8s-node
openstack security group rule create k8s-node --protocol TCP --dst-port 10250:10250
openstack security group rule create k8s-node --protocol TCP --dst-port 6640:6640 --remote-ip 192.168.0.0/24
openstack security group rule create k8s-node --protocol TCP --dst-port 6653:6653 --remote-ip 192.168.0.0/24
openstack security group rule create k8s-node --protocol TCP --dst-port 4789:4789 --remote-ip 192.168.0.0/24
openstack security group rule create k8s-node --protocol UDP --dst-port 4789:4789 --remote-ip 192.168.0.0/24


# TODO Floating IP
Expand Down

0 comments on commit b38fcde

Please sign in to comment.