summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/templates/atomic-openshift-master.j2
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-03-14 10:17:44 -0400
committerAndrew Butcher <abutcher@redhat.com>2016-03-14 10:17:44 -0400
commit728dde0f940170588f8edd90c132b3f36b8efc86 (patch)
tree0ce8787141d0c53cfa582946933b839504768ce7 /roles/openshift_master/templates/atomic-openshift-master.j2
parent7415f01e92f751a802db6a555dd02a56c01f590e (diff)
downloadopenshift-728dde0f940170588f8edd90c132b3f36b8efc86.tar.gz
openshift-728dde0f940170588f8edd90c132b3f36b8efc86.tar.bz2
openshift-728dde0f940170588f8edd90c132b3f36b8efc86.tar.xz
openshift-728dde0f940170588f8edd90c132b3f36b8efc86.zip
Ensure is_containerized is cast as bool.
Diffstat (limited to 'roles/openshift_master/templates/atomic-openshift-master.j2')
-rw-r--r--roles/openshift_master/templates/atomic-openshift-master.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/templates/atomic-openshift-master.j2 b/roles/openshift_master/templates/atomic-openshift-master.j2
index 8602a492e..c848e0ac2 100644
--- a/roles/openshift_master/templates/atomic-openshift-master.j2
+++ b/roles/openshift_master/templates/atomic-openshift-master.j2
@@ -1,6 +1,6 @@
OPTIONS=--loglevel={{ openshift.master.debug_level }}
CONFIG_FILE={{ openshift_master_config_file }}
-{% if openshift.common.is_containerized %}
+{% if openshift.common.is_containerized | bool %}
IMAGE_VERSION={{ openshift_version }}
{% endif %}