You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
840 B

  1. ---
  2. local_volume_provisioner_namespace: "kube-system"
  3. # List of node labels to be copied to the PVs created by the provisioner
  4. local_volume_provisioner_nodelabels: []
  5. # - kubernetes.io/hostname
  6. # - topology.kubernetes.io/region
  7. # - topology.kubernetes.io/zone
  8. # Levarages Ansibles string to Python datatype casting. Otherwise the dict_key isn't substituted
  9. # see https://github.com/ansible/ansible/issues/17324
  10. local_volume_provisioner_use_node_name_only: false
  11. local_volume_provisioner_storage_classes: |
  12. {
  13. "{{ local_volume_provisioner_storage_class | default('local-storage') }}": {
  14. "host_dir": "{{ local_volume_provisioner_base_dir | default ('/mnt/disks') }}",
  15. "mount_dir": "{{ local_volume_provisioner_mount_dir | default('/mnt/disks') }}",
  16. "volume_mode": "Filesystem",
  17. "fs_type": "ext4"
  18. }
  19. }