Changed install and uninstall condition
[ealt-edge.git] / ocd / infra / playbooks / roles / grafana / tasks / install.yml
index e55bda8..46245cb 100644 (file)
 # yamllint disable rule:line-length
   when: result.stdout == ""
 
-- name: Install grafana on x86_64
+- name: "INSTALL: Install grafana on x86_64"
   shell:
     cmd: helm install mec-grafana stable/grafana
   when: result is failed and ansible_architecture == 'x86_64'
 
-- name: copy values.yaml to host
+- name: "INSTALL: copy values.yaml to host"
   copy:
     src: values.yaml
     dest: /tmp/grafana/
   when: result is failed and ansible_architecture == 'aarch64'
 
-- name: Install grafana on aarch64
+- name: "INSTALL: Install grafana on aarch64"
   shell:
     cmd: helm install mec-grafana stable/grafana -f /tmp/grafana/values.yaml
   when: result is failed and ansible_architecture == 'aarch64'