Merge "make hostname,network and ip-address on all examples consistent"

This commit is contained in:
Jenkins 2016-04-19 15:07:13 +00:00 committed by Gerrit Code Review
commit d4940515b6
3 changed files with 95 additions and 17 deletions

View File

@ -21,12 +21,12 @@ hosts which should run HAProxy:
.. code-block:: yaml .. code-block:: yaml
haproxy_hosts: haproxy_hosts:
123456-infra01: infra1:
ip: 172.29.236.51 ip: 172.29.236.101
123457-infra02: infra2:
ip: 172.29.236.52 ip: 172.29.236.102
123458-infra03: infra3:
ip: 172.29.236.53 ip: 172.29.236.103
There is an example configuration file already provided in There is an example configuration file already provided in
``/etc/openstack_deploy/conf.d/haproxy.yml.example``. Rename the file to ``/etc/openstack_deploy/conf.d/haproxy.yml.example``. Rename the file to

View File

@ -3,8 +3,9 @@
Installation workflow Installation workflow
--------------------- ---------------------
This diagram shows the general workflow associated with OSA This diagram shows the general workflow associated with an
installation. OpenStack-Ansible (OSA) installation.
**Figure 1.7. Installation workflow** **Figure 1.7. Installation workflow**
@ -17,6 +18,82 @@ installation.
#. :doc:`Run infrastructure playbooks <install-infrastructure>` #. :doc:`Run infrastructure playbooks <install-infrastructure>`
#. :doc:`Run OpenStack playbooks <install-openstack>` #. :doc:`Run OpenStack playbooks <install-openstack>`
=======
Network ranges
~~~~~~~~~~~~~~
For consistency, the following IP addresses and hostnames will be
referred to in this installation workflow.
+-----------------------+-----------------+
| Network | IP Range |
+=======================+=================+
| Management Network | 172.29.236.0/22 |
+-----------------------+-----------------+
| Tunnel (VXLAN) Network| 172.29.240.0/22 |
+-----------------------+-----------------+
| Storage Network | 172.29.244.0/22 |
+-----------------------+-----------------+
IP assignments
~~~~~~~~~~~~~~
+------------------+----------------+-------------------+----------------+
| Host name | Management IP | Tunnel (VxLAN) IP | Storage IP |
+==================+================+===================+================+
| infra1 | 172.29.236.101 | 172.29.240.101 | 172.29.244.101 |
+------------------+----------------+-------------------+----------------+
| infra2 | 172.29.236.102 | 172.29.240.102 | 172.29.244.102 |
+------------------+----------------+-------------------+----------------+
| infra3 | 172.29.236.103 | 172.29.240.103 | 172.29.244.103 |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| net1 | 172.29.236.111 | 172.29.240.111 | |
+------------------+----------------+-------------------+----------------+
| net2 | 172.29.236.112 | 172.29.240.112 | |
+------------------+----------------+-------------------+----------------+
| net3 | 172.29.236.113 | 172.29.240.113 | |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| compute1 | 172.29.236.121 | 172.29.240.121 | 172.29.244.121 |
+------------------+----------------+-------------------+----------------+
| compute2 | 172.29.236.122 | 172.29.240.122 | 172.29.244.122 |
+------------------+----------------+-------------------+----------------+
| compute3 | 172.29.236.123 | 172.29.240.123 | 172.29.244.123 |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| lvm-storage1 | 172.29.236.131 | | 172.29.244.131 |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| nfs-storage1 | 172.29.236.141 | | 172.29.244.141 |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| ceph-mon1 | 172.29.236.151 | | 172.29.244.151 |
+------------------+----------------+-------------------+----------------+
| ceph-mon2 | 172.29.236.152 | | 172.29.244.152 |
+------------------+----------------+-------------------+----------------+
| ceph-mon3 | 172.29.236.153 | | 172.29.244.153 |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| swift1 | 172.29.236.161 | | 172.29.244.161 |
+------------------+----------------+-------------------+----------------+
| swift2 | 172.29.236.162 | | 172.29.244.162 |
+------------------+----------------+-------------------+----------------+
| swift3 | 172.29.236.163 | | 172.29.244.163 |
+------------------+----------------+-------------------+----------------+
| | | | |
+------------------+----------------+-------------------+----------------+
| log1 | 172.29.236.171 | | |
+------------------+----------------+-------------------+----------------+
-------------- --------------
.. include:: navigation.txt .. include:: navigation.txt

View File

@ -90,8 +90,9 @@
# #
# used_ips: # used_ips:
# - 172.29.236.1 # - 172.29.236.1
# - "172.29.236.11,172.29.236.12" # - "172.29.236.100,172.29.236.200"
# - "172.29.239.231,172.29.239.254" # - "172.29.240.100,172.29.240.200"
# - "172.29.244.100,172.29.244.200"
# #
# -------- # --------
# #
@ -339,11 +340,11 @@
# #
# os-infra_hosts: # os-infra_hosts:
# infra1: # infra1:
# ip: 172.29.236.100
# infra2:
# ip: 172.29.236.101 # ip: 172.29.236.101
# infra3: # infra2:
# ip: 172.29.236.102 # ip: 172.29.236.102
# infra3:
# ip: 172.29.236.103
# #
# -------- # --------
# #
@ -417,7 +418,7 @@
# #
# compute_hosts: # compute_hosts:
# compute1: # compute1:
# ip: 172.29.236.111 # ip: 172.29.236.121
# #
# -------- # --------
# #
@ -560,8 +561,8 @@
# Define an OpenStack storage host: # Define an OpenStack storage host:
# #
# storage_hosts: # storage_hosts:
# storage1: # lvm-storage1:
# ip: 172.29.236.121 # ip: 172.29.236.131
# #
# Example: # Example:
# #
@ -639,4 +640,4 @@
# #
# log_hosts: # log_hosts:
# log1: # log1:
# ip: 172.29.236.131 # ip: 172.29.236.171