Skip to content

Commit ff787f7

Browse files
authored
feat: include section on Accessing OpenStack
1 parent 982c87d commit ff787f7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,23 @@ This script will go through the process of performing the following tasks
232232
* openstack configuration
233233
* tempest testing
234234

235+
Accessing OpenStack
236+
-------------------
237+
238+
After a successful deployment of OpenStack you make access the OpenStack API and Horizon by proxying your connection via the seed node, as it has an interface on the public network (192.168.39.X).
239+
Using software such as sshuttle will allow for easy access.
240+
241+
.. code-block:: console
242+
243+
sshuttle -r $(terraform output -raw ssh_user)@$(terraform output -raw seed_access_ip_v4) 192.168.39.0/24
244+
245+
You may also use sshuttle to proxy DNS via the multinode environment. Useful if you are working with Designate.
246+
Important to node this will proxy all DNS requests from your machine to the first controller within the multinode environment.
247+
248+
.. code-block:: console
249+
250+
sshuttle -r $(terraform output -raw ssh_user)@$(terraform output -raw seed_access_ip_v4) 192.168.39.0/24 --dns --to-ns 192.168.39.4
251+
235252
Tear Down
236253
---------
237254

0 commit comments

Comments
 (0)