Glance: API is now accessible via HAProxy

This commit is contained in:
Przemyslaw Kaminski 2015-06-03 14:02:39 +02:00
parent 27915bcd4f
commit 217aff61ea
3 changed files with 7 additions and 11 deletions

View File

@ -3,19 +3,15 @@
sudo: yes
tasks:
- docker:
command: /bin/bash -c "glance-manage db_sync && /usr/bin/glance-api"
#command: /bin/bash -c "glance-manage db_sync && /usr/bin/glance-api"
command: /usr/bin/glance-api
name: {{ name }}
image: {{ image }}
state: running
net: host
{% if ports.value %}
expose:
- 9292
ports:
{% for port in ports.value %}
{% for p in port['value'] %}
- {{ p['value'] }}:{{ p['value'] }}
{% endfor %}
{% endfor %}
{% endif %}
- {{ ports.value[0]['value'][0]['value'] }}:9292
{% if host_binds.value %}
volumes:
# TODO: host_binds might need more work

View File

@ -3,8 +3,8 @@
sudo: yes
tasks:
- docker:
#command: /bin/bash -c "glance-manage db_sync && /usr/bin/glance-registry"
command: /usr/bin/glance-registry
command: /bin/bash -c "glance-manage db_sync && /usr/bin/glance-registry"
#command: /usr/bin/glance-registry
name: {{ name }}
image: {{ image }}
state: running