kolla-ansible/compose/nova-api-conductor-scheduler-consoleauth-novncproxy.yml

43 lines
880 B
YAML
Raw Normal View History

novaconductor:
image: kollaglue/centos-rdo-nova-conductor:latest
name: nova-conductor
net: "host"
restart: always
env_file:
- openstack.env
# Unfortunately nova api needs to be privileged as it wants to run
# a firewall command.
novaapi:
image: kollaglue/centos-rdo-nova-api:latest
name: nova-api
privileged: True
net: "host"
restart: always
env_file:
- openstack.env
novascheduler:
image: kollaglue/centos-rdo-nova-scheduler:latest
name: nova-scheduler
net: "host"
restart: always
env_file:
- openstack.env
novaconsoleauth:
image: kollaglue/centos-rdo-nova-consoleauth:latest
name: nova-consoleauth
net: "host"
restart: always
env_file:
- openstack.env
novanovncproxy:
image: kollaglue/centos-rdo-nova-novncproxy:latest
name: nova-novncproxy
net: "host"
restart: always
env_file:
- openstack.env