From d41a5490f30a161561c39c4f1b08add17b9cf6f7 Mon Sep 17 00:00:00 2001 From: pmikus Date: Wed, 18 Aug 2021 12:04:27 +0000 Subject: Infra: Ansible yaml lint cleanup Signed-off-by: pmikus Change-Id: If00b376bd78b7b603d7887c1e149e7dccdb6d217 --- .../roles/prometheus_exporter/tasks/main.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'fdio.infra.ansible/roles/prometheus_exporter/tasks/main.yaml') diff --git a/fdio.infra.ansible/roles/prometheus_exporter/tasks/main.yaml b/fdio.infra.ansible/roles/prometheus_exporter/tasks/main.yaml index 3f4b563352..3fe40f031a 100644 --- a/fdio.infra.ansible/roles/prometheus_exporter/tasks/main.yaml +++ b/fdio.infra.ansible/roles/prometheus_exporter/tasks/main.yaml @@ -3,7 +3,7 @@ - name: Inst - Update Package Cache (APT) apt: - update_cache: yes + update_cache: true cache_valid_time: 3600 when: - ansible_distribution|lower == 'ubuntu' @@ -23,10 +23,10 @@ image: "{{ ne_image }}" state: "started" restart_policy: "unless-stopped" - detach: yes + detach: true ports: - - "9100:9100" - privileged: yes + - "9100:9100" + privileged: true command: - "--path.procfs=/host/proc" - "--path.rootfs=/rootfs" @@ -49,8 +49,8 @@ - name: Conf - Prometheus Blackbox Exporter copy: - src: "files/blackbox.yml" - dest: "/etc/prometheus/blackbox.yml" + src: "files/blackbox.yml" + dest: "/etc/prometheus/blackbox.yml" tags: - prometheus-conf-blackbox-exporter @@ -60,13 +60,13 @@ image: "{{ be_image }}" state: "started" restart_policy: "unless-stopped" - detach: yes + detach: true ports: - - "9115:9115" - privileged: yes + - "9115:9115" + privileged: true command: - "--config.file=/config/blackbox.yml" volumes: - "/etc/prometheus/blackbox.yml:/config/blackbox.yml:ro" tags: - - prometheus-inst \ No newline at end of file + - prometheus-inst -- cgit 1.2.3-korg