330a02f497
The zuul and nodepool container images are moving to quay.io. Update our docker-compose.yaml files for nodepool to find the images for nodepool there now. Change-Id: I86db3e7db98c6101b5389d0a8b4315f1474e045d
22 lines
617 B
Django/Jinja
22 lines
617 B
Django/Jinja
version: '2'
|
|
services:
|
|
nodepool-launcher:
|
|
image: quay.io/zuul-ci/nodepool-launcher:{{ nodepool_launcher_container_tag|default('latest') }}
|
|
user: nodepool
|
|
network_mode: host
|
|
restart: always
|
|
command: nodepool-launcher -f -c /etc/nodepool/nodepool.yaml -l /etc/nodepool/launcher-logging.conf
|
|
|
|
environment:
|
|
- DEBUG=1
|
|
- STATSD_HOST=graphite.opendev.org
|
|
- STATSD_PORT=8125
|
|
|
|
volumes:
|
|
# nodepool config
|
|
- /etc/nodepool:/etc/nodepool:ro
|
|
# openstacksdk config
|
|
- /etc/openstack:/etc/openstack:ro
|
|
# logs
|
|
- /var/log/nodepool:/var/log/nodepool:rw
|