This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| openstack_with_kolla [2017/06/24 19:13] – herwarth | openstack_with_kolla [2017/08/15 18:00] (current) – herwarth | ||
|---|---|---|---|
| Line 442: | Line 442: | ||
| # Helux | # Helux | ||
| - | helux = chrony, | + | helux = chrony, |
| </ | </ | ||
| ====Passwords==== | ====Passwords==== | ||
| Line 533: | Line 533: | ||
| The ansible scripts use the /etc/kolla directory to configure customer specific parts of Openstack. | The ansible scripts use the /etc/kolla directory to configure customer specific parts of Openstack. | ||
| mkdir -p / | mkdir -p / | ||
| + | ===Own signed certificates=== | ||
| + | mkdir / | ||
| + | Create haproxy-ca.pem containg root CA certificate and create haproxy.pem containing the private key and certificate concatenated. | ||
| + | < | ||
| + | ls -l / | ||
| + | total 8 | ||
| + | -rw-r--r-- 1 root root 1192 Jun 20 17:44 haproxy-ca.pem | ||
| + | -rw-r----- 1 root root 2205 Jun 20 18:18 haproxy.pem | ||
| + | </ | ||
| I use NFS storage so create a file with the NFS share info. | I use NFS storage so create a file with the NFS share info. | ||
| <code - / | <code - / | ||
| Line 548: | Line 557: | ||
| We are going to deploy on multiple nodes so copy the example over | We are going to deploy on multiple nodes so copy the example over | ||
| cp / | cp / | ||
| - | I did some ajustments | + | Change matching environment: |
| <code - / | <code - / | ||
| [control] | [control] | ||
| Line 700: | Line 709: | ||
| openstack network create --provider-network-type vxlan demo-net | openstack network create --provider-network-type vxlan demo-net | ||
| openstack subnet create --subnet-range 10.0.0.0/24 --network demo-net \ | openstack subnet create --subnet-range 10.0.0.0/24 --network demo-net \ | ||
| - | --gateway 10.0.0.1 | + | --gateway 10.0.0.1 demo-subnet |
| openstack router create demo-router | openstack router create demo-router | ||