diff options
| author | Fabian von Feilitzsch <fabian@fabianism.us> | 2017-07-18 14:26:55 -0400 | 
|---|---|---|
| committer | Fabian von Feilitzsch <fabian@fabianism.us> | 2017-07-18 14:26:55 -0400 | 
| commit | 70a7e1221b8503dbf10d5bd48c2261272041b85f (patch) | |
| tree | badcb9b623a713de5e91c43e542ec67fa12540c0 | |
| parent | 742203529902ba278c213e326f81f667304b9625 (diff) | |
1471973- default to bootstrapping the broker on startup
| -rw-r--r-- | roles/ansible_service_broker/defaults/main.yml | 1 | ||||
| -rw-r--r-- | roles/ansible_service_broker/tasks/install.yml | 1 | 
2 files changed, 2 insertions, 0 deletions
| diff --git a/roles/ansible_service_broker/defaults/main.yml b/roles/ansible_service_broker/defaults/main.yml index aa1c5022b..12929b354 100644 --- a/roles/ansible_service_broker/defaults/main.yml +++ b/roles/ansible_service_broker/defaults/main.yml @@ -4,6 +4,7 @@ ansible_service_broker_remove: false  ansible_service_broker_log_level: info  ansible_service_broker_output_request: false  ansible_service_broker_recovery: true +ansible_service_broker_bootstrap_on_startup: true  # Recommended you do not enable this for now  ansible_service_broker_dev_broker: false  ansible_service_broker_launch_apb_on_bind: false diff --git a/roles/ansible_service_broker/tasks/install.yml b/roles/ansible_service_broker/tasks/install.yml index 65dffc89b..25204c8b9 100644 --- a/roles/ansible_service_broker/tasks/install.yml +++ b/roles/ansible_service_broker/tasks/install.yml @@ -254,6 +254,7 @@                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 }} +              bootstrap_on_startup: {{ ansible_service_broker_bootstrap_on_startup | bool | lower }}  - name: Create the Broker resource in the catalog    oc_obj: | 
