guides/devstack-with-lbaas-v2 contained an indentation misstake,
that formatted some of the text unintentionally as quotations.
Change-Id: Ibbad4974c45f028d3de461ba69e0cea837d9c871
| ... | ... |
@@ -15,7 +15,7 @@ make sure it is updated. Install git and any other developer tools you find usef |
| 15 | 15 |
|
| 16 | 16 |
Install devstack |
| 17 | 17 |
|
| 18 |
- :: |
|
| 18 |
+:: |
|
| 19 | 19 |
|
| 20 | 20 |
git clone https://git.openstack.org/openstack-dev/devstack |
| 21 | 21 |
cd devstack |
| ... | ... |
@@ -23,7 +23,7 @@ Install devstack |
| 23 | 23 |
|
| 24 | 24 |
Edit your ``local.conf`` to look like |
| 25 | 25 |
|
| 26 |
- :: |
|
| 26 |
+:: |
|
| 27 | 27 |
|
| 28 | 28 |
[[local|localrc]] |
| 29 | 29 |
# Load the external LBaaS plugin. |
| ... | ... |
@@ -60,7 +60,7 @@ Edit your ``local.conf`` to look like |
| 60 | 60 |
|
| 61 | 61 |
Run stack.sh and do some sanity checks |
| 62 | 62 |
|
| 63 |
- :: |
|
| 63 |
+:: |
|
| 64 | 64 |
|
| 65 | 65 |
./stack.sh |
| 66 | 66 |
. ./openrc |
| ... | ... |
@@ -69,7 +69,7 @@ Run stack.sh and do some sanity checks |
| 69 | 69 |
|
| 70 | 70 |
Create two nova instances that we can use as test http servers: |
| 71 | 71 |
|
| 72 |
- :: |
|
| 72 |
+:: |
|
| 73 | 73 |
|
| 74 | 74 |
#create nova instances on private network |
| 75 | 75 |
nova boot --image $(nova image-list | awk '/ cirros-.*-x86_64-uec / {print $2}') --flavor 1 --nic net-id=$(openstack network list | awk '/ private / {print $2}') node1
|
| ... | ... |
@@ -83,7 +83,7 @@ Create two nova instances that we can use as test http servers: |
| 83 | 83 |
|
| 84 | 84 |
Set up a simple web server on each of these instances. ssh into each instance (username 'cirros', password 'cubswin:)') and run |
| 85 | 85 |
|
| 86 |
- :: |
|
| 86 |
+:: |
|
| 87 | 87 |
|
| 88 | 88 |
MYIP=$(ifconfig eth0|grep 'inet addr'|awk -F: '{print $2}'| awk '{print $1}')
|
| 89 | 89 |
while true; do echo -e "HTTP/1.0 200 OK\r\n\r\nWelcome to $MYIP" | sudo nc -l -p 80 ; done& |
| ... | ... |
@@ -91,7 +91,7 @@ Set up a simple web server on each of these instances. ssh into each instance (u |
| 91 | 91 |
Phase 2: Create your load balancers |
| 92 | 92 |
------------------------------------ |
| 93 | 93 |
|
| 94 |
- :: |
|
| 94 |
+:: |
|
| 95 | 95 |
|
| 96 | 96 |
neutron lbaas-loadbalancer-create --name lb1 private-subnet |
| 97 | 97 |
neutron lbaas-loadbalancer-show lb1 # Wait for the provisioning_status to be ACTIVE. |