diff options
author | baigk <baiguoku@huawei.com> | 2015-08-05 01:31:07 -0400 |
---|---|---|
committer | baigk <baiguoku@huawei.com> | 2015-08-05 05:36:31 +0000 |
commit | 974a3c3bf5b71cd6b07c1b4b51044bc535ff4456 (patch) | |
tree | 3047960616cf8e797d86c4bd19cdca06738b122a /deploy/adapters/ansible/roles/nova-controller/tasks | |
parent | d05b5f04c92034eae1675dc8102247a3cc3315f7 (diff) |
support deployment openstack juno with ansible for compass in ubuntu 14.04
JIRA: COMPASS-4
Change-Id: I7adc565325c2a0cbf878b2aea022b31d118748dd
Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/nova-controller/tasks')
3 files changed, 52 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/nova-controller/tasks/main.yml b/deploy/adapters/ansible/roles/nova-controller/tasks/main.yml new file mode 100644 index 00000000..72a9f4d4 --- /dev/null +++ b/deploy/adapters/ansible/roles/nova-controller/tasks/main.yml @@ -0,0 +1,13 @@ +--- +- include: nova_install.yml + tags: + - install + - nova_install + - nova + +- include: nova_config.yml + when: HA_CLUSTER is not defined or HA_CLUSTER[inventory_hostname] == '' + tags: + - config + - nova_config + - nova diff --git a/deploy/adapters/ansible/roles/nova-controller/tasks/nova_config.yml b/deploy/adapters/ansible/roles/nova-controller/tasks/nova_config.yml new file mode 100644 index 00000000..62351faa --- /dev/null +++ b/deploy/adapters/ansible/roles/nova-controller/tasks/nova_config.yml @@ -0,0 +1,16 @@ +--- +- name: nova db sync + command: su -s /bin/sh -c "nova-manage db sync" nova + register: result + until: result.rc == 0 + retries: 5 + delay: 3 + notify: + - restart nova-api + - restart nova-cert + - restart nova-consoleauth + - restart nova-scheduler + - restart nova-conductor + - restart nova-novncproxy + +- meta: flush_handlers diff --git a/deploy/adapters/ansible/roles/nova-controller/tasks/nova_install.yml b/deploy/adapters/ansible/roles/nova-controller/tasks/nova_install.yml new file mode 100644 index 00000000..83bc287a --- /dev/null +++ b/deploy/adapters/ansible/roles/nova-controller/tasks/nova_install.yml @@ -0,0 +1,23 @@ +--- +- include_vars: "{{ ansible_os_family }}.yml" + +- name: install nova related packages + action: "{{ ansible_pkg_mgr }} name={{ item }} state=present force=yes" + with_items: packages + +- name: generate nova controll service list + shell: echo {{ item }} >> /opt/service + with_items: services + +- name: update nova conf + template: src=nova.conf + dest=/etc/nova/nova.conf + backup=yes + notify: + - restart nova-api + - restart nova-cert + - restart nova-consoleauth + - restart nova-scheduler + - restart nova-conductor + - restart nova-novncproxy + - remove nova-sqlite-db |