Browse Source

Merge pull request #4299 from sdodson/bool

Merged by openshift-bot
OpenShift Bot 7 years ago
parent
commit
14d4e10132
1 changed files with 2 additions and 2 deletions
  1. 2 2
      roles/openshift_hosted/tasks/router/router.yml

+ 2 - 2
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: