Browse Source

Merge pull request #6134 from fraenkel/allow_false

Allow openshift_install_examples to be false
Scott Dodson 7 years ago
parent
commit
1ef463e727

+ 2 - 2
playbooks/common/openshift-cluster/upgrades/post_control_plane.yml

@@ -93,11 +93,11 @@
   # not already exist. We could have potentially done a replace --force to
   # create and update in one step.
   - role: openshift_examples
-    when: openshift_install_examples | default(true,true) | bool
+    when: openshift_install_examples | default(true) | bool
   - openshift_hosted_templates
   # Update the existing templates
   - role: openshift_examples
-    when: openshift_install_examples | default(true,true) | bool
+    when: openshift_install_examples | default(true) | bool
     registry_url: "{{ openshift.master.registry_url }}"
     openshift_examples_import_command: replace
   - role: openshift_hosted_templates

+ 1 - 1
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 }}"