Removed end_play condition
[ealt-edge.git] / ocd / infra / playbooks / roles / k8s / tasks / install.yml
index 62f1a84..2b32b6d 100644 (file)
 - name: Check whether k8s is already installed
   command: which k8s
   register: result
-  failed_when: false
+  ignore_errors: yes
   no_log: True
 
 - debug:
     msg: k8s is already present
   when: result.rc == 0
 
-- meta: end_play
-  when: result.rc == 0
-
 - name: Install k8s
   shell:
 # yamllint disable rule:line-length