main.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. openshift_storage_glusterfs_timeout: 300
  3. openshift_storage_glusterfs_namespace: 'default'
  4. openshift_storage_glusterfs_is_native: True
  5. openshift_storage_glusterfs_nodeselector: 'storagenode=glusterfs'
  6. openshift_storage_glusterfs_image: "{{ 'rhgs3/rhgs-server-rhel7' | quote if deployment_type == 'openshift-enterprise' else 'gluster/gluster-centos' | quote }}"
  7. openshift_storage_glusterfs_version: 'latest'
  8. openshift_storage_glusterfs_wipe: False
  9. openshift_storage_glusterfs_heketi_is_native: True
  10. openshift_storage_glusterfs_heketi_is_missing: True
  11. openshift_storage_glusterfs_heketi_deploy_is_missing: True
  12. openshift_storage_glusterfs_heketi_image: "{{ 'rhgs3/rhgs-volmanager-rhel7' | quote if deployment_type == 'openshift-enterprise' else 'heketi/heketi' | quote }}"
  13. openshift_storage_glusterfs_heketi_version: 'latest'
  14. openshift_storage_glusterfs_heketi_admin_key: ''
  15. openshift_storage_glusterfs_heketi_user_key: ''
  16. openshift_storage_glusterfs_heketi_topology_load: True
  17. openshift_storage_glusterfs_heketi_wipe: "{{ openshift_storage_glusterfs_wipe }}"
  18. openshift_storage_glusterfs_heketi_url: "{{ omit }}"
  19. openshift_storage_glusterfs_registry_timeout: "{{ openshift_storage_glusterfs_timeout }}"
  20. openshift_storage_glusterfs_registry_namespace: "{{ openshift.hosted.registry.namespace | default('default') }}"
  21. openshift_storage_glusterfs_registry_is_native: "{{ openshift_storage_glusterfs_is_native }}"
  22. openshift_storage_glusterfs_registry_nodeselector: 'storagenode=registry'
  23. openshift_storage_glusterfs_registry_image: "{{ openshift_storage_glusterfs_image }}"
  24. openshift_storage_glusterfs_registry_version: "{{ openshift_storage_glusterfs_version }}"
  25. openshift_storage_glusterfs_registry_wipe: "{{ openshift_storage_glusterfs_wipe }}"
  26. openshift_storage_glusterfs_registry_heketi_is_native: "{{ openshift_storage_glusterfs_heketi_is_native }}"
  27. openshift_storage_glusterfs_registry_heketi_is_missing: "{{ openshift_storage_glusterfs_heketi_is_missing }}"
  28. openshift_storage_glusterfs_registry_heketi_deploy_is_missing: "{{ openshift_storage_glusterfs_heketi_deploy_is_missing }}"
  29. openshift_storage_glusterfs_registry_heketi_image: "{{ openshift_storage_glusterfs_heketi_image }}"
  30. openshift_storage_glusterfs_registry_heketi_version: "{{ openshift_storage_glusterfs_heketi_version }}"
  31. openshift_storage_glusterfs_registry_heketi_admin_key: "{{ openshift_storage_glusterfs_heketi_admin_key }}"
  32. openshift_storage_glusterfs_registry_heketi_user_key: "{{ openshift_storage_glusterfs_heketi_user_key }}"
  33. openshift_storage_glusterfs_registry_heketi_topology_load: "{{ openshift_storage_glusterfs_heketi_topology_load }}"
  34. openshift_storage_glusterfs_registry_heketi_wipe: "{{ openshift_storage_glusterfs_heketi_wipe }}"
  35. openshift_storage_glusterfs_registry_heketi_url: "{{ openshift_storage_glusterfs_heketi_url | default(omit) }}"