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

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