From ec38f3a97107bef17af21d6979f04ce5cc2b4824 Mon Sep 17 00:00:00 2001 From: Tyler Britten Date: Fri, 21 Oct 2016 10:21:41 -0400 Subject: [PATCH] Fixed Networking, Formatting --- docs/01-infrastructure-os.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/01-infrastructure-os.md b/docs/01-infrastructure-os.md index 507c8ca..86d1fc1 100644 --- a/docs/01-infrastructure-os.md +++ b/docs/01-infrastructure-os.md @@ -27,7 +27,7 @@ To make our Kubernetes control plane remotely accessible, a Floating IP address ## Networking -``` + Create a Kubernetes network: ``` @@ -44,8 +44,19 @@ Create a router for the network: ``` openstack router create kubernetes +``` + +Attach the network to the router: + ``` openstack router add subnet kubernetes kubernetes +``` + +Attack the router to the external network: + +``` +neutron router-gateway-set kubernetes external +``` ### Firewall Rules