summaryrefslogtreecommitdiffstats
path: root/roles/openshift_provisioners
diff options
context:
space:
mode:
authorRodolfo Carvalho <rhcarvalho@gmail.com>2017-08-08 18:55:17 +0200
committerLuke Meyer <lmeyer@redhat.com>2017-08-10 14:12:43 -0400
commitc84f11d71f89ae9ac0c93f3da4f74c742346612e (patch)
tree4ff4892c46abb4c732e7c4b83cf93020cb3916ff /roles/openshift_provisioners
parent6528031d5ec24d62ffe28687bb134bc1237f0210 (diff)
downloadopenshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.tar.gz
openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.tar.bz2
openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.tar.xz
openshift-c84f11d71f89ae9ac0c93f3da4f74c742346612e.zip
Fix syntax for when statement
Without that, playbook runs print warnings such as this: [WARNING]: when statements should not include jinja2 templating delimiters such as {{ }} or {% %}. Found: {{ g_etcd_hosts is not defined and g_new_etcd_hosts is not defined}}
Diffstat (limited to 'roles/openshift_provisioners')
-rw-r--r--roles/openshift_provisioners/tasks/install_efs.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_provisioners/tasks/install_efs.yaml b/roles/openshift_provisioners/tasks/install_efs.yaml
index b53b6afa1..4a6e00513 100644
--- a/roles/openshift_provisioners/tasks/install_efs.yaml
+++ b/roles/openshift_provisioners/tasks/install_efs.yaml
@@ -67,4 +67,4 @@
register: efs_output
failed_when: efs_output.rc == 1 and 'exists' not in efs_output.stderr
check_mode: no
- when: efs_anyuid.stdout.find("system:serviceaccount:{{openshift_provisioners_project}}:provisioners-efs") == -1
+ when: efs_anyuid.stdout.find("system:serviceaccount:" + openshift_provisioners_project + ":provisioners-efs") == -1