ealt-all.yml changes
[ealt-edge.git] / ocd / infra / playbooks / roles / grafana / tasks / uninstall.yml
index d4e5e33..93a5be0 100644 (file)
 # limitations under the License.
 
 ---
-- name: Uninstall grafana
+- name: check if grafana is installed before deleting
   shell:
-    cmd: helm uninstall mec-grafana
-  when: result is succeeded
+    cmd: helm status grafana
+  register: result
+  ignore_errors: yes
+  no_log: True
+
+- debug:
+    msg: Uninstalling docker...
+  when: result.stdout != ""
+
+- debug:
+    msg: Ignore Uninstall Log , Grafana not installed
+  when: result.stdout == ""
+
+- name: Uninstall grafana on arm
+  shell:
+    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'