Added playbook for hpc/nova-controller docker

This commit is contained in:
Egon Rijpkema 2017-06-23 11:00:21 +02:00
parent aa535dc3d4
commit be8e476e3e
3 changed files with 72 additions and 0 deletions

5
nova-management.yml Normal file
View File

@ -0,0 +1,5 @@
---
- hosts: nova-management
become: True
roles:
- nova-management

View File

@ -0,0 +1,48 @@
# Build and install a docker image for nova-controller.
---
- include: ../common/tasks/docker.yml
- name: Make build and persistent directories
file:
path: "{{ item }}"
state: directory
mode: 0777
with_items:
- /srv/nova-controller
# Todo: remove this when we have a docker repo
# Disabled because of https://github.com/ansible/ansible/issues/20653
#- name: clone docker-glance repo
# git:
# accept_hostkey: True
# repo: ssh://git@git.webhosting.rug.nl:222/HPC/docker-nova-service
# dest: /srv/docker-nova-service
- name: build nova-controller image
docker_image:
path: /srv/docker-nova-service
name: hpc/novacontroller
- name: install service file.
template:
src: templates/nova-controller.service
dest: /etc/systemd/system/nova-controller.service
mode: 644
owner: root
group: root
- command: systemctl daemon-reload
- name: Initialize database.
command: >
/usr/bin/docker run --rm
--add-host=mariadb:{{ hostvars[groups['databases'][0]]['ansible_default_ipv4']['address'] }}
--add-host=controller:{{ hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address'] }}
hpc/novacontroller
/etc/bootstrap.sh
tags: bootstrap
- name: make sure service is started
systemd:
name: nova-controller.service
state: restarted

View File

@ -0,0 +1,19 @@
[Unit]
Description=Openstack nova-controller Container
After=docker.service
Requires=docker.service
[Service]
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker stop %n
ExecStartPre=-/usr/bin/docker rm %n
ExecStart=/usr/bin/docker run --name %n \
--add-host=mariadb:{{ hostvars[groups['databases'][0]]['ansible_default_ipv4']['address'] }} \
--add-host=controller:{{ hostvars[groups['keystone'][0]]['ansible_default_ipv4']['address'] }} \
-p 8774:8774 \
-p 8778:8778 \
hpc/novacontroller /etc/run.sh
[Install]
WantedBy=multi-user.target