From 3e1488493484d64e7448c468dd840aa03ed617c8 Mon Sep 17 00:00:00 2001
From: Michael Fraenkel <michael.fraenkel@gmail.com>
Date: Wed, 15 Nov 2017 22:03:56 -0500
Subject: Allow openshift_install_examples to be false

when using yaml or json, a false value is converted to true
---
 playbooks/openshift-master/private/additional_config.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'playbooks/openshift-master')

diff --git a/playbooks/openshift-master/private/additional_config.yml b/playbooks/openshift-master/private/additional_config.yml
index 32f638d42..b7cfbe4e4 100644
--- a/playbooks/openshift-master/private/additional_config.yml
+++ b/playbooks/openshift-master/private/additional_config.yml
@@ -24,7 +24,7 @@
   - role: openshift_project_request_template
     when: openshift_project_request_template_manage
   - role: openshift_examples
-    when: openshift_install_examples | default(true, true) | bool
+    when: openshift_install_examples | default(true) | bool
     registry_url: "{{ openshift.master.registry_url }}"
   - role: openshift_hosted_templates
     registry_url: "{{ openshift.master.registry_url }}"
-- 
cgit v1.2.3