From 1516141fcce8e2b27c741fa17f7f0d62919084bc Mon Sep 17 00:00:00 2001 From: arvindpatel Date: Tue, 1 Dec 2020 12:03:25 +0530 Subject: [PATCH] Resolved Ci issue Signed-off-by: arvindpatel Change-Id: I051ff2b6071971fae42ed82916d51bde47a4734b --- blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/install.yml | 7 +++++++ .../iotgateway/playbooks/roles/el_hawkbit/tasks/uninstall.yml | 2 ++ 2 files changed, 9 insertions(+) diff --git a/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/install.yml b/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/install.yml index b9d2714..44907e4 100644 --- a/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/install.yml +++ b/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/install.yml @@ -18,9 +18,16 @@ - name: Hawkbit add repo command: helm repo add eclipse-iot https://eclipse.org/packages/charts + ignore_errors: yes + no_log: True - name: Update helm repo command: helm repo update + ignore_errors: yes + no_log: True + - name: Install hackbit command: helm install eclipse-hawkbit eclipse-iot/hawkbit + ignore_errors: yes + no_log: True diff --git a/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/uninstall.yml b/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/uninstall.yml index bec510c..fae50ea 100644 --- a/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/uninstall.yml +++ b/blueprints/iotgateway/playbooks/roles/el_hawkbit/tasks/uninstall.yml @@ -18,3 +18,5 @@ - name: Uninstall hawkbit command: helm delete eclipse-hawkbit + ignore_errors: yes + no_log: True -- 2.16.6