23 Commits

Author SHA1 Message Date
b75fab3e81 Added openstack01 with /dev mounted in cinder container. 2018-12-18 11:08:04 +01:00
25e2467edc Mounting the whole of /dev/now in cinder-storage 2018-12-14 16:16:50 +01:00
f011919666 added openstack01 2018-12-14 10:24:44 +01:00
6cbebf4c91 set cinder availability zone 2018-12-11 10:04:42 +01:00
4309956de1 Without host mode the docker container id
is referenced in volume name.
2018-12-10 17:24:43 +01:00
51e2bf3544 Login to docker repo is now needed. 2018-11-21 15:49:06 +01:00
375d5fa4c9 changes for openstack03 2018-10-11 09:59:16 +02:00
4d95b0ddbd openstack04 added to openstack03 cluster. 2018-10-10 10:44:09 +02:00
981b1eff63 Better security for machine that runs horizon. 2018-10-03 13:45:54 +02:00
31e3506d30 Added sane ansible.cfg 2018-10-03 11:50:42 +02:00
03a619823d This makes a neutron net-list possible
as well as a openstack network list.
2018-07-19 15:01:56 +02:00
0c605af3ae Check if this role is deployed as part of the cluster
This makes it possible to deploy a galara cluster in one set of hosts
and a separate stand alone mariadb on another host.
2018-05-17 16:12:28 +02:00
ca6adb44f6 It should be include_playbook
... the replacement for impotrt for static includes, that is....
2018-04-04 11:28:16 +02:00
c0d50d7444 include is deprecated. 2018-03-22 09:21:22 +01:00
f8a3179b74 Ensure installation of same openstack client 2018-02-22 16:35:44 +01:00
84b901c8b3 make keystone install more resiliant... 2018-02-16 13:39:21 +01:00
e3f3d5d3b7 Fix syntax error. 2018-02-16 11:45:53 +01:00
68ac7a0a6d Added some explanations. 2018-02-06 13:34:56 +01:00
8da96590ac It's horizon not glance. 2018-02-05 16:29:12 +01:00
fea7aaaff6 using the proper test machines 2018-02-05 15:23:33 +01:00
fb2bdfe543 added missing secrets 2018-01-30 14:50:08 +01:00
3347fa7c25 switched to nuclear fusion 2018-01-30 14:49:39 +01:00
f776756205 fixed interface mappings 2018-01-30 14:48:52 +01:00
22 changed files with 185 additions and 107 deletions

View File

@ -1,2 +1,6 @@
[defaults] [defaults]
inventory = merlin inventory = hosts
stdout_callback = debug
vault_password_file = .vault_pass.txt
forks = 20
host_key_checking = false

View File

@ -1,7 +1,13 @@
--- ---
- hosts: all - hosts: all
name: Dummy to gather facts name: Dummy to gather facts
tasks: [] tasks:
- name: gather facts even if hosts are excluded.
setup:
delegate_to: "{{item}}"
delegate_facts: True
loop: "{{groups['all']}}"
- hosts: cinder-controller - hosts: cinder-controller
become: True become: True

View File

@ -1,5 +1,11 @@
--- ---
- hosts: all - hosts: all
become: True become: True
vars_prompt:
- name: "docker_user"
prompt: "What is your p number?"
- name: "docker_pass"
prompt: "What is your password?"
private: yes
roles: roles:
- common - common

View File

@ -1,14 +1,14 @@
--- ---
- include: common.yml - import_tasks: common.yml
- include: rabbitmq.yml - import_tasks: rabbitmq.yml
- include: memcached.yml - import_tasks: memcached.yml
- include: mariadb.yml - import_tasks: mariadb.yml
- include: keystone.yml - import_tasks: keystone.yml
- include: glance-controller.yml - import_tasks: glance-controller.yml
- include: nova-controller.yml - import_tasks: nova-controller.yml
- include: neutron-controller.yml - import_tasks: neutron-controller.yml
- include: cinder-controller.yml - import_tasks: cinder-controller.yml
- include: cinder-storage.yml - import_tasks: cinder-storage.yml
- include: nova-compute.yml - import_tasks: nova-compute.yml
- include: horizon.yml - import_tasks: horizon.yml
- include: gcc-post-install.yml - import_tasks: gcc-post-install.yml

2
group_vars/horizon.yml Normal file
View File

@ -0,0 +1,2 @@
---
security_fail2ban_enabled: false

View File

@ -6,4 +6,5 @@
- hosts: horizon - hosts: horizon
become: True become: True
roles: roles:
- geerlingguy.security
- horizon - horizon

2
host_vars/openstack03 Normal file
View File

@ -0,0 +1,2 @@
---
listen_ip: '172.23.40.243'

2
host_vars/openstack04 Normal file
View File

@ -0,0 +1,2 @@
---
listen_ip: '172.23.40.253'

12
merlin
View File

@ -1,9 +1,9 @@
[nova-compute] [nova-compute]
merlin-managementnode002 physical_interface_mappings=eno3 merlin-managementnode002 physical_interface_mappings=provider:eno3
merlin-managementnode003 physical_interface_mappings=eno3 merlin-managementnode003 physical_interface_mappings=provider:eno3
merlin-node001 physical_interface_mappings=eno3 merlin-node001 physical_interface_mappings=provider:eno3
merlin-node003 physical_interface_mappings=eno3 merlin-node003 physical_interface_mappings=provider:eno3
merlin-node004 physical_interface_mappings=eno3 merlin-node004 physical_interface_mappings=provider:eno3
[databases] [databases]
merlin-managementnode001 merlin-managementnode001
@ -28,7 +28,7 @@ merlin-managementnode001
merlin-managementnode001 merlin-managementnode001
[neutron-controller] [neutron-controller]
merlin-managementnode001 physical_interface_mappings=eno3 merlin-managementnode001 physical_interface_mappings=provider:eno3
[heat] [heat]
merlin-managementnode001 merlin-managementnode001

View File

@ -1,8 +1,13 @@
--- ---
# This playbook will reset the instalation to facilitate a new installation.
# All data is lost!
- hosts: all - hosts: all
become: True
name: Dummy to gather facts name: Dummy to gather facts
tasks: tasks:
- name: Stop docker service - name: Stop docker service
shell: "systemctl stop docker"
- name: Verify docker is stopped.
systemd: systemd:
name: docker name: docker
state: stopped state: stopped
@ -10,6 +15,7 @@
shell: "rm -rf /srv" shell: "rm -rf /srv"
- hosts: cinder-storage - hosts: cinder-storage
become: True
tasks: tasks:
- name: wipe cinder storage. - name: wipe cinder storage.
shell: "dd if=/dev/zero of={{ storage_volume }} bs=1M count=1 && sync" shell: "dd if=/dev/zero of={{ storage_volume }} bs=1M count=1 && sync"

View File

@ -26,10 +26,14 @@ openstack03
openstack03 openstack03
[cinder-storage] [cinder-storage]
openstack01 storage_volume=/dev/sdc3
openstack02 storage_volume=/dev/sda5
openstack03 storage_volume=/dev/sdb1 openstack03 storage_volume=/dev/sdb1
openstack04 storage_volume=/dev/sdb1
[nova-compute] [nova-compute]
openstack01 physical_interface_mappings=provider:bond0
openstack02 physical_interface_mappings=provider:enp34s0f1
openstack03 physical_interface_mappings=provider:enp4s0f0 openstack03 physical_interface_mappings=provider:enp4s0f0
openstack04 physical_interface_mappings=provider:eno1
[all:vars]
listen_ip=172.23.40.243

View File

@ -20,7 +20,9 @@
-e "OS_PASSWORD={{ secrets['OS_PASSWORD'] }}" -e "OS_PASSWORD={{ secrets['OS_PASSWORD'] }}"
-e "RABBIT_HOST={{ listen_ip | default(hostvars[groups['rabbitmq'][0]]['ansible_default_ipv4']['address']) }}" -e "RABBIT_HOST={{ listen_ip | default(hostvars[groups['rabbitmq'][0]]['ansible_default_ipv4']['address']) }}"
-e "RABBIT_PASSWORD={{ secrets['RABBIT_PASSWORD'] }}" -e "RABBIT_PASSWORD={{ secrets['RABBIT_PASSWORD'] }}"
-e "AVAILABILITY_ZONE={{ ansible_nodename }}"
-e "RABBIT_USER=openstack" -e "RABBIT_USER=openstack"
-e "CINDER_STORAGE_VOLUME={{ storage_volume }}"
tags: vars tags: vars
- name: pull docker image - name: pull docker image
@ -43,7 +45,7 @@
--privileged --privileged
{{ env_vars }} {{ env_vars }}
-v /srv/cinder-storage/root:/root \ -v /srv/cinder-storage/root:/root \
-v "{{ storage_volume }}":/dev/cinder_storage_volume \ -v /dev:/dev \
{{ docker_image }} /etc/bootstrap.sh {{ docker_image }} /etc/bootstrap.sh
tags: bootstrap tags: bootstrap

View File

@ -11,13 +11,10 @@ ExecStartPre=-/usr/bin/docker rm %n
ExecStart=/usr/bin/docker run --name %n \ ExecStart=/usr/bin/docker run --name %n \
--privileged \ --privileged \
{{ env_vars | replace('\n', '') }} \ {{ env_vars | replace('\n', '') }} \
-v "/dev/cinder-volumes/":/dev/cinder-volumes \
-v /srv/cinder-storage/root:/root \ -v /srv/cinder-storage/root:/root \
-v "{{ storage_volume }}":/dev/cinder_storage_volume \ -v "/dev":/dev \
-v "/dev/lvm":/dev/lvm \ -v "/var/lib/cinder:/var/lib/cinder" \
-v "/srv/cinder-storage/volumes/:/var/lib/cinder/volumes/" \ --network=host \
-p 8777:8776 \
-p 3260:3260 \
{{ docker_image }} {{ docker_image }}
[Install] [Install]

View File

@ -5,7 +5,7 @@
- name: Passwordless sudo for admins - name: Passwordless sudo for admins
lineinfile: dest=/etc/sudoers line="%admin ALL=(ALL:ALL) NOPASSWD:ALL" lineinfile: dest=/etc/sudoers line="%admin ALL=(ALL:ALL) NOPASSWD:ALL"
- include: users.yml - import_tasks: users.yml
- name: common | install packages - name: common | install packages
apt: pkg={{ item }} state=latest update_cache=yes apt: pkg={{ item }} state=latest update_cache=yes
@ -26,4 +26,11 @@
owner: root owner: root
group: root group: root
- include: docker.yml #- import_tasks: docker.yml
- name: Log into DockerHub
docker_login:
registry: registry.webhosting.rug.nl
username: "{{ docker_user }}"
password: "{{ docker_pass }}"

View File

@ -1,5 +1,5 @@
[Unit] [Unit]
Description=Openstack Glance Container Description=Openstack Horizon Container
After=docker.service After=docker.service
Requires=docker.service Requires=docker.service

View File

@ -52,7 +52,7 @@
delay: 3 delay: 3
ignore_errors: yes ignore_errors: yes
- name: keystone manage commands to setup db - name: keystone manage commands to setup db_sync
command: > command: >
/usr/bin/docker run --rm /usr/bin/docker run --rm
--add-host=mariadb:{{ listen_ip | default(hostvars[groups['databases'][0]]['ansible_default_ipv4']['address']) }} --add-host=mariadb:{{ listen_ip | default(hostvars[groups['databases'][0]]['ansible_default_ipv4']['address']) }}
@ -69,6 +69,11 @@
--bootstrap-internal-url http://{{ listen_ip | default(hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address']) }}:35357/v3/ --bootstrap-internal-url http://{{ listen_ip | default(hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address']) }}:35357/v3/
--bootstrap-public-url http://{{ listen_ip | default(hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address']) }}:5000/v3/ --bootstrap-public-url http://{{ listen_ip | default(hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address']) }}:5000/v3/
--bootstrap-region-id RegionOne --bootstrap-region-id RegionOne
# sometimes the initial connect fails.
# Retry until it succeeds.
retries: 7
delay: 3
ignore_errors: yes
- name: make sure service is started - name: make sure service is started
systemd: systemd:
@ -85,12 +90,18 @@
-e "OS_AUTH_URL=http://${KEYSTONE_HOST}:35357/v3" -e "OS_AUTH_URL=http://${KEYSTONE_HOST}:35357/v3"
-e "OS_PASSWORD={{ secrets['OS_PASSWORD'] }}" -e "OS_PASSWORD={{ secrets['OS_PASSWORD'] }}"
{{ docker_image }} bash /etc/bootstrap.sh {{ docker_image }} bash /etc/bootstrap.sh
register: result
retries: 7
delay: 3
- name: install openstack repo host key.
command: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5EDB1B62EC4926EA
tags: openstackclient
- name: install openstack repo on host. - name: install openstack repo on host.
command: > apt_repository:
echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu xenial-updates/ocata main" > /etc/apt/sources.list.d/ocata.list && repo: "deb http://ubuntu-cloud.archive.canonical.com/ubuntu xenial-updates/ocata main"
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5EDB1B62EC4926EA filename: ocata
tags: openstackclient tags: openstackclient
- name: install openstack client for management - name: install openstack client for management

View File

@ -1,3 +1,5 @@
export OS_PROJECT_DOMAIN_NAME=Default
export OS_USER_DOMAIN_NAME=Default
export OS_TENANT_NAME=admin export OS_TENANT_NAME=admin
export OS_USERNAME=admin export OS_USERNAME=admin
export OS_PASSWORD={{ hostvars[groups['keystone'][0]]['OS_PASSWORD'] }} export OS_PASSWORD={{ hostvars[groups['keystone'][0]]['OS_PASSWORD'] }}

View File

@ -21,12 +21,14 @@
dest: /srv/mariadb/etc/mysql/conf.d/my.cnf dest: /srv/mariadb/etc/mysql/conf.d/my.cnf
mode: 660 mode: 660
- name: Set galara.cnf on node if we have at least three nodes. - name: >
Set galara.cnf on node if we have at least three nodes.
And we're part of the cluster.
template: template:
src: files/galera.cnf src: files/galera.cnf
dest: /srv/mariadb/etc/mysql/conf.d/galera.cnf dest: /srv/mariadb/etc/mysql/conf.d/galera.cnf
mode: 660 mode: 660
when: groups['databases'] | length >= 3 when: "'databases' in group_names and groups['databases'] | length >= 3"
# This mimics galera_new_cluster.sh # This mimics galera_new_cluster.sh
- name: Initialize a new cluster. - name: Initialize a new cluster.
@ -47,7 +49,8 @@
name: mysql.service name: mysql.service
state: started state: started
when: groups['databases'] | length >= 3 and ansible_hostname == hostname_node0 when: "'databases' in group_names and groups['databases'] \
| length >= 3 and ansible_hostname == hostname_node0"
- name: install service file. - name: install service file.
block: block:
@ -61,12 +64,22 @@
group: root group: root
- name: Give the master node some time to initialize the cluster. - name: Give the master node some time to initialize the cluster.
command: bash -c "sleep 60 && systemctl daemon-reload" command: bash -c "sleep 60"
when: "'databases' in group_names and groups['databases'] \
| length >= 3"
- name: Daemon reload (the implicit doesn't work)
command: bash -c "systemctl daemon-reload"
- name: make sure service is started - name: make sure service is started
systemd: systemd:
name: mysql.service name: mysql.service
state: started state: started
daemon_reload: yes
- name: start service at boot. - name: start service at boot.
command: systemctl reenable mysql.service command: systemctl reenable mysql.service
- name: Give the cluster some time to initialize replication.
command: bash -c "sleep 60 && systemctl daemon-reload"
when: "'databases' in group_names and groups['databases'] | length >= 3"

View File

@ -31,6 +31,7 @@ ExecStart=/usr/bin/docker run --name %n \
-e "RABBIT_HOST={{ hostvars[groups['rabbitmq'][0]]['listen_ip'] | default(hostvars[groups['rabbitmq'][0]]['ansible_default_ipv4']['address']) }}" \ -e "RABBIT_HOST={{ hostvars[groups['rabbitmq'][0]]['listen_ip'] | default(hostvars[groups['rabbitmq'][0]]['ansible_default_ipv4']['address']) }}" \
-e "RABBIT_PASSWORD={{ secrets['RABBIT_PASSWORD'] }}" \ -e "RABBIT_PASSWORD={{ secrets['RABBIT_PASSWORD'] }}" \
-e "RABBIT_USER=openstack" \ -e "RABBIT_USER=openstack" \
-e "AVAILABILITY_ZONE={{ ansible_nodename }}" \
--add-host=keystone:{{ hostvars[groups['keystone'][0]]['listen_ip'] | default(hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address']) }} \ --add-host=keystone:{{ hostvars[groups['keystone'][0]]['listen_ip'] | default(hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address']) }} \
--add-host=mariadb:{{ hostvars[groups['databases'][0]]['listen_ip'] | default(hostvars[groups['databases'][0]]['ansible_default_ipv4']['address']) }} \ --add-host=mariadb:{{ hostvars[groups['databases'][0]]['listen_ip'] | default(hostvars[groups['databases'][0]]['ansible_default_ipv4']['address']) }} \
--privileged \ --privileged \

View File

@ -1,32 +1,32 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
35616361313539616462356335646363623938366465306461313030373933636533346262363934 32313865346461323861313234623330633830663561353636396161643566353733393931303232
3363636363313264626338666264303736626566623738300a363034653230613037656634616464 3134353364393034626564333866383065633162383561390a656463303464616434303435303037
35613639633237616232306336373436616230636536313566386131636566623436313061396637 63313232373630616136626464373464646535353030396136656361343162666165366566383737
6537343234333636320a356466393539616234613766623635333132636566303732663166396365 6133326539393432390a386162393639636137326532393939633665326637373461663766656565
35343063393438306435653331386232396132613239383130646637623839313530376534333434 36636661653939373134313165383261353832373362613533366431626330313831643836363932
39636465636361353937613133366239666462633735643438623139383438616431323332363464 38623937663335646134323130636539333335636265313564323032623065393031343235633832
62373463393531636561326532663737653236316663383838636564646264353663343736306663 33336138653336633932383133366566656464356331306265663662356166613135663234326434
38383866383466313864623037313663313334666261653330613763653562366163323436336466 64343765366439303766613062363830346238376435366138323662366463353634623937376663
64616133643862316339626266326434626339646461356235333062623665376534306533623839 39313263613764623533323562333932656564346462333961663538353366313065343263383431
36646661326133613435663066386430346333326164643138396130313138376566393539656665 39643734353632336134663965343062373933656461393264323938303261316563313962343837
39643134383663613761613839656362623932316235643138326332623934373733326364313762 66623562333031646633643734383439386130653033343962633930613031313433633033383561
62643030336230646530346233653334663936333965616263613236663238663031336331323664 65366230663263346661343339636537336332323266623230646534323563373934356332663136
38653466623734373735666330303636663965663633376461303464353138393233653864623231 30626231623534616562323033333437353239306538653835623931363164383536336562336136
39343539343136313736393838333563346534336430393436663634643364643264373237313862 30666265366536313436646535383632626137613831633132666666653830383566323532306332
35313035666133393535383630663635313533653534626661613465636236306462346632656437 34353534336331653330663137323936303337306134333036633932363664643864333534316438
65383839616263373462323737316263373161353036366162633366326565663035663862393463 31623062303137376637353061643838383831663561663436663130663064323665316261316531
32623466653237663538626238613264656631633830666435343264343338333934356662323761 32616533333165636130623334373130316339326538343330646366383933353137623631323530
66666566353838633334316336396338666332343730626130396435363131363834363436343066 39653437343432383161323661643931346664663265326664336461373033646563666333353661
30663137646561616665643636326665343535653937386566663364353761633061366134356561 61633865373764346131623131346266373331626336663735303439376230333537386562303939
31363831316636353732316134623835643936326636373635376539666531313664306663306362 65363139346564653464663633326639323930333464376136353064393039373535613231623138
30643038396261366335626335366661613063626361323933663364373564623238663265646361 61373434323065646238356436373730333939613965666237616265653033333230353466316266
39653330306562646164343836316336363534303139663335333862646633343434333336613564 30383939376335656632626232663061623332636337646234653565363561353334643462376666
66346434626538306462623463666132356539613962646437366436666434613764613331303566 30326438303333336265306463313137656334313235643434616238333564373761333235633639
37306531326434666666616630336232343937393066316565653539396664353139643330633764 66346161316130633463623435646639366136386335386139613230653064663230366265633036
39343036626366316339353737383561323532343965633536633964366235396530316462316331 33613132633035393337653436613031383765616638323663363866393165613030306637393134
38343338303764636331363436616530316564383233643962343539363564326465663434386262 38333734373939626364343533306662393463646264666161346434363832623239643864303431
30666465636337636335303864373836363561623036363939326161313430366162663839343739 39383931333139633338663761646335613935636239636439383333313531633364653439323036
35393630666139383035613462653630393133656265613665363939636539393834396333396538 35373639363164386666366335313934336231333261623763633133393562656237313761356631
33633330353163386430353038656431643763626263383764636237303133383033666537306235 39663234653339313466326534333435306662316461333035623339353435383137383735373733
36343139643164626562616563643562313865396464616336353432613639633264336639383236 32373535303338646266346539386364356233616631316661633037346665353762353138376538
373735393064636436326435643962383864 386535333439313233663464353534376535

View File

@ -1,15 +1,15 @@
--- ---
- include: common.yml - import_playbook: common.yml
- include: rabbitmq.yml - import_playbook: rabbitmq.yml
- include: memcached.yml - import_playbook: memcached.yml
- include: mariadb.yml - import_playbook: mariadb.yml
- include: keystone.yml - import_playbook: keystone.yml
- include: glance-controller.yml - import_playbook: glance-controller.yml
- include: nova-controller.yml - import_playbook: nova-controller.yml
- include: neutron-controller.yml - import_playbook: neutron-controller.yml
- include: cinder-controller.yml - import_playbook: cinder-controller.yml
- include: cinder-storage.yml - import_playbook: cinder-storage.yml
- include: nova-compute.yml - import_playbook: nova-compute.yml
- include: horizon.yml - import_playbook: horizon.yml
- include: heat.yml - import_playbook: heat.yml
- include: post-install.yml - import_playbook: post-install.yml

View File

@ -1,36 +1,48 @@
[databases] [databases]
ansible-test openstack-test05
ansible-test-2 openstack-test06
ansible-test-3 openstack-test07
[keystone] [keystone]
ansible-test-3 openstack-test05
[glance-controller] [glance-controller]
ansible-test-2 openstack-test05
[horizon] [horizon]
ansible-test-3 openstack-test05
[rabbitmq] [rabbitmq]
ansible-test openstack-test05
ansible-test-2 openstack-test06
ansible-test-3 openstack-test07
[cinder-storage]
ansible-test
[memcached] [memcached]
ansible-test-3 openstack-test05
[neutron-controller] [neutron-controller]
ansible-test physical_interface_mappings=provider:ens10 openstack-test05 physical_interface_mappings=provider:enp4s0f0
[nova-controller] [nova-controller]
ansible-test openstack-test05
[nova-compute] [cinder-controller]
ansible-test-2 physical_interface_mappings=provider:ens10 openstack-test05
[heat] [heat]
ansible-test openstack-test05
[cinder-storage]
openstack-test05 storage_volume=/dev/openstack-test05-vg/cinder
openstack-test06 storage_volume=/dev/openstack-test06-vg/cinder
openstack-test07 storage_volume=/dev/openstack-test07-vg/cinder
openstack-test08 storage_volume=/dev/openstack-test08-vg/cinder
openstack-test09 storage_volume=/dev/openstack-test09-vg/cinder
openstack-test10 storage_volume=/dev/openstack-test10-vg/cinder
[nova-compute]
openstack-test06 physical_interface_mappings=provider:enp4s0f0
openstack-test07 physical_interface_mappings=provider:enp4s0f0
openstack-test08 physical_interface_mappings=provider:enp4s0f0
openstack-test09 physical_interface_mappings=provider:enp4s0f0
openstack-test10 physical_interface_mappings=provider:enp4s0f0