From 037edf12150451279783f81d65c10b3a50595e45 Mon Sep 17 00:00:00 2001
From: Stanislav Makar <stamak@users.noreply.github.com>
Date: Mon, 13 Nov 2017 12:15:53 +0200
Subject: [PATCH] Fix failed task of setting up bash completion for helm
 (#1968)

Closes: #1967
---
 roles/kubernetes-apps/helm/tasks/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/kubernetes-apps/helm/tasks/main.yml b/roles/kubernetes-apps/helm/tasks/main.yml
index 027b2afdd..a0f1b7785 100644
--- a/roles/kubernetes-apps/helm/tasks/main.yml
+++ b/roles/kubernetes-apps/helm/tasks/main.yml
@@ -36,4 +36,4 @@
 
 - name: Helm | Set up bash completion
   shell: "umask 022 && {{ bin_dir }}/helm completion bash >/etc/bash_completion.d/helm.sh"
-  when: (helm_container is defined and helm_container.changed) or (helm_task_result is defined and helm_task_result.changed) and not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
+  when: ((helm_container is defined and helm_container.changed) or (helm_task_result is defined and helm_task_result.changed)) and not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]
-- 
GitLab