eg 1.1.1 related
[eliot.git] / blueprints / iotgateway / playbooks / roles / grafana / tasks / uninstall.yml
index 6f08c57..93a5be0 100644 (file)
@@ -15,7 +15,7 @@
 ---
 - name: check if grafana is installed before deleting
   shell:
-    cmd: helm status mec-grafana
+    cmd: helm status grafana
   register: result
   ignore_errors: yes
   no_log: True
     msg: Ignore Uninstall Log , Grafana not installed
   when: result.stdout == ""
 
-- name: Uninstall grafana
+- name: Uninstall grafana on arm
   shell:
-    cmd: helm uninstall mec-grafana
-  when: result is succeeded
+    cmd: helm uninstall grafana
+  when: result is succeeded and ansible_architecture == 'aarch64'
+
+- name: Uninstall grafana on x86
+  shell:
+    cmd: helm uninstall grafana
+  when: result is succeeded and ansible_architecture == 'x86_64'