Browse Source

Add default to False to avoid error when variable is not defined

Diego Abelenda 7 years ago
parent
commit
c0246d922e

+ 1 - 1
playbooks/openshift-hosted/private/create_persistent_volumes.yml

@@ -11,7 +11,7 @@
     persistentlocalstorage_classes: "{{ openshift_persistentlocalstorage_classes | default([]) }}"
   roles:
   - role: openshift_persistentlocalstorage
-    when: openshift_persistentlocalstorage_enabled | bool
+    when: openshift_persistentlocalstorage_enabled | default(False) | bool
 
 - name: Create Hosted Resources - Persistent Local Storage Classes
   hosts: nodes

+ 1 - 1
roles/openshift_control_plane/defaults/main.yml

@@ -128,7 +128,7 @@ r_openshift_master_data_dir: "{{ r_openshift_master_data_dir_default }}"
 r_openshift_master_sdn_network_plugin_name_default: "{{ os_sdn_network_plugin_name | default('redhat/openshift-ovs-subnet') }}"
 r_openshift_master_sdn_network_plugin_name: "{{ r_openshift_master_sdn_network_plugin_name_default }}"
 
-openshift_master_use_persistentlocalvolumes: "{{ openshift_persistentlocalstorage_enabled | default(False) }}"
+openshift_master_use_persistentlocalvolumes: "{{ openshift_persistentlocalstorage_enabled | default(False) | bool }}"
 
 openshift_master_image_config_latest_default: "{{ openshift_image_config_latest | default(False) }}"
 openshift_master_image_config_latest: "{{ openshift_master_image_config_latest_default }}"

+ 1 - 1
roles/openshift_node/defaults/main.yml

@@ -233,4 +233,4 @@ openshift_node_image_config_latest: "{{ openshift_node_image_config_latest_defau
 
 openshift_node_use_instance_profiles: False
 
-openshift_node_use_persistentlocalvolumes: "{{ openshift_persistentlocalstorage_enabled | default(False) }}"
+openshift_node_use_persistentlocalvolumes: "{{ openshift_persistentlocalstorage_enabled | default(False) | bool }}"