diff options
Diffstat (limited to 'roles/openshift_hosted/tasks')
| -rw-r--r-- | roles/openshift_hosted/tasks/router/router.yml | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_hosted/tasks/router/router.yml b/roles/openshift_hosted/tasks/router/router.yml index e75e3b16f..192afc87a 100644 --- a/roles/openshift_hosted/tasks/router/router.yml +++ b/roles/openshift_hosted/tasks/router/router.yml @@ -37,7 +37,7 @@          cafile: "{{ openshift_master_config_dir ~ '/ca.crt' }}"    # End Block -  when: openshift_hosted_router_create_certificate +  when: openshift_hosted_router_create_certificate | bool  - name: Get the certificate contents for router    copy: @@ -46,7 +46,7 @@      src: "{{ item }}"    with_items: "{{ openshift_hosted_routers | oo_collect(attribute='certificate') |                    oo_select_keys_from_list(['keyfile', 'certfile', 'cafile']) }}" -  when: not openshift_hosted_router_create_certificate +  when: not openshift_hosted_router_create_certificate | bool  - name: Create the router service account(s)    oc_serviceaccount:  | 
