ffe388ba06
Ceilometer image filter was incorrectly used. Thr filter should be in the volume list instead. Change-Id: I3ad8a1d85607004b28f9a25b9a4e9f8b914ae9df Closes-Bug: #1784496
22 lines
707 B
YAML
22 lines
707 B
YAML
---
|
|
- name: Running Ceilometer bootstrap container
|
|
vars:
|
|
ceilometer_notification: "{{ ceilometer_services['ceilometer-notification'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
CEILOMETER_DATABASE_TYPE: "gnocchi"
|
|
image: "{{ ceilometer_notification.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_ceilometer"
|
|
restart_policy: "never"
|
|
volumes: "{{ ceilometer_notification.volumes|reject('equalto', '')|list }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[ceilometer_notification.group][0] }}"
|