diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-07-07 13:58:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-07 13:58:39 -0400 |
commit | f0adf39fdf3fb537f799e8e690bf84ba2a6606a7 (patch) | |
tree | 9e12e72940c1c133f3be3cdac22b41c34b7b635a /roles | |
parent | d9ee451be066257c5f9e93d1795b4cccfe152fa0 (diff) | |
parent | 9c97aa5e95654ec717718c508c844ebcc252d467 (diff) | |
download | openshift-f0adf39fdf3fb537f799e8e690bf84ba2a6606a7.tar.gz openshift-f0adf39fdf3fb537f799e8e690bf84ba2a6606a7.tar.bz2 openshift-f0adf39fdf3fb537f799e8e690bf84ba2a6606a7.tar.xz openshift-f0adf39fdf3fb537f799e8e690bf84ba2a6606a7.zip |
Merge pull request #4716 from ewolinetz/fix_broker_configmap
updating configmap map definition to fix asb not starting up correctly
Diffstat (limited to 'roles')
-rw-r--r-- | roles/ansible_service_broker/tasks/install.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/ansible_service_broker/tasks/install.yml b/roles/ansible_service_broker/tasks/install.yml index 8cacf3276..65dffc89b 100644 --- a/roles/ansible_service_broker/tasks/install.yml +++ b/roles/ansible_service_broker/tasks/install.yml @@ -250,10 +250,10 @@ color: true openshift: {} broker: - dev_broker: "{{ ansible_service_broker_dev_broker }}" - launch_apb_on_bind: "{{ ansible_service_broker_launch_apb_on_bind }}" - recovery: "{{ ansible_service_broker_recovery }}" - output_request: "{{ ansible_service_broker_output_request }}" + dev_broker: {{ ansible_service_broker_dev_broker | bool | lower }} + launch_apb_on_bind: {{ ansible_service_broker_launch_apb_on_bind | bool | lower }} + recovery: {{ ansible_service_broker_recovery | bool | lower }} + output_request: {{ ansible_service_broker_output_request | bool | lower }} - name: Create the Broker resource in the catalog oc_obj: |