
* Added roles/node-exporter. * node-exporter.yml: Deploy on all overcloud hosts. * node-exporter: deploy: Use command variable. * node-exporter: README: Fixed role name. * node-exporter: Do not enable by default.
11 lines
263 B
YAML
11 lines
263 B
YAML
---
|
|
- name: Pulling Node Exporter container image
|
|
docker_image:
|
|
name: "{{ item.value.image }}"
|
|
repository: "{{ item.value.image }}"
|
|
state: present
|
|
with_dict: "{{ nodeexporter_services }}"
|
|
when:
|
|
- item.value.enabled
|
|
- action != 'destroy'
|