Przeglądaj źródła

Enable SC, ASB, TSB by default

This will not install the components on an upgrade.
Scott Dodson 7 lat temu
rodzic
commit
80a6839214

+ 1 - 1
playbooks/common/openshift-cluster/config.yml

@@ -27,7 +27,7 @@
   when: openshift_logging_install_logging | default(false) | bool
 
 - include: service_catalog.yml
-  when: openshift_enable_service_catalog | default(false) | bool
+  when: openshift_enable_service_catalog | default(true) | bool
 
 - include: ../openshift-management/config.yml
   when: openshift_management_install_management | default(false) | bool

+ 1 - 1
roles/ansible_service_broker/tasks/main.yml

@@ -2,7 +2,7 @@
 # do any asserts here
 
 - include: install.yml
-  when: ansible_service_broker_install | default(false) | bool
+  when: ansible_service_broker_install | default(true) | bool
 
 - include: remove.yml
   when: ansible_service_broker_remove | default(false) | bool

+ 1 - 1
roles/template_service_broker/tasks/main.yml

@@ -2,7 +2,7 @@
 # do any asserts here
 
 - include: install.yml
-  when: template_service_broker_install | default(false) | bool
+  when: template_service_broker_install | default(true) | bool
 
 - include: remove.yml
   when: template_service_broker_remove | default(false) | bool