main.yml 611 B

1234567891011121314151617
  1. ---
  2. # Options of NFS exports.
  3. osnl_nfs_export_options: "*(rw,sync,all_squash)"
  4. # Directory, where the created partitions should be mounted. They will be
  5. # mounted as <osnl_mount_dir>/test1g0001 etc.
  6. osnl_mount_dir: /exports/openshift
  7. # Volume Group to use.
  8. osnl_volume_group: openshiftvg
  9. # Volume reclaim policy of a PersistentVolume tells the cluster
  10. # what to do with the volume after it is released.
  11. #
  12. # Valid values are "Retain" or "Recycle".
  13. # See https://docs.openshift.com/container-platform/latest/architecture/additional_concepts/storage.html#pv-reclaim-policy
  14. osnl_volume_reclaim_policy: "Recycle"