2016-09-19 18:05:06 +08:00
|
|
|
---
|
2016-03-29 13:25:43 -04:00
|
|
|
- name: Running Ceilometer bootstrap container
|
2017-01-21 17:22:24 +08:00
|
|
|
vars:
|
2017-10-31 22:16:25 +08:00
|
|
|
ceilometer_notification: "{{ ceilometer_services['ceilometer-notification'] }}"
|
2018-05-30 11:25:19 +07:00
|
|
|
become: true
|
2023-11-08 14:17:51 +01:00
|
|
|
kolla_container:
|
2016-03-29 13:25:43 -04:00
|
|
|
action: "start_container"
|
|
|
|
common_options: "{{ docker_common_options }}"
|
|
|
|
detach: False
|
|
|
|
environment:
|
|
|
|
KOLLA_BOOTSTRAP:
|
|
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
2020-04-07 16:46:30 -03:00
|
|
|
CEILOMETER_DATABASE_TYPE: "{{ ceilometer_database_type }}"
|
|
|
|
CEILOMETER_UPGRADE_PARAMS: "{{ ceilometer_upgrade_params }}"
|
2018-07-31 09:55:28 +02:00
|
|
|
image: "{{ ceilometer_notification.image }}"
|
2016-03-29 13:25:43 -04:00
|
|
|
labels:
|
|
|
|
BOOTSTRAP:
|
|
|
|
name: "bootstrap_ceilometer"
|
2023-04-27 11:41:55 +02:00
|
|
|
restart_policy: oneshot
|
2022-07-25 09:52:05 +02:00
|
|
|
volumes: "{{ ceilometer_notification.volumes | reject('equalto', '') | list }}"
|
2016-03-29 13:25:43 -04:00
|
|
|
run_once: True
|
2017-10-31 22:16:25 +08:00
|
|
|
delegate_to: "{{ groups[ceilometer_notification.group][0] }}"
|