diff options
Diffstat (limited to 'lib/ansible/playbooks/configure_undercloud.yml')
-rw-r--r-- | lib/ansible/playbooks/configure_undercloud.yml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/lib/ansible/playbooks/configure_undercloud.yml b/lib/ansible/playbooks/configure_undercloud.yml index fbac6eeb..f1878e81 100644 --- a/lib/ansible/playbooks/configure_undercloud.yml +++ b/lib/ansible/playbooks/configure_undercloud.yml @@ -47,6 +47,11 @@ - name: openstack-configs undercloud shell: openstack-config --set undercloud.conf DEFAULT {{ item }} with_items: "{{ undercloud_config }}" + - name: Add ironic packages + yum: + name: openstack-ironic-api,openstack-ironic-common, + openstack-ironic-inspector + become: yes - name: openstack-configs ironic shell: openstack-config --set /etc/ironic/ironic.conf {{ item }} become: yes @@ -98,6 +103,15 @@ with_items: - neutron-server - neutron-dhcp-agent + - name: Configure workaround for mariadb long blob (LP#1768913) + shell: openstack-config --set /etc/my.cnf.d/galera.cnf mysqld innodb_log_file_size 256M + become: yes + - name: restart mariadb service + service: + name: mariadb + state: restarted + enabled: yes + become: yes - name: configure external network vlan ifcfg template: src: external_vlan_ifcfg.yml.j2 @@ -174,7 +188,7 @@ become: yes when: - not nat_network_ipv6 - - virtual_overcloud + - nat - name: fetch storage environment file fetch: src: /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml @@ -182,7 +196,7 @@ flat: yes - name: fetch sriov environment file fetch: - src: /usr/share/openstack-tripleo-heat-templates/environments/neutron-opendaylight-sriov.yaml + src: /usr/share/openstack-tripleo-heat-templates/environments/services/neutron-opendaylight-sriov.yaml dest: "{{ apex_temp_dir }}/" flat: yes |