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.

21 lines
919 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. local_volume_provisioner_tolerations: []
  9. local_volume_provisioner_use_node_name_only: false
  10. # Leverages Ansible's string to Python datatype casting. Otherwise the dict_key isn't substituted.
  11. # see https://github.com/ansible/ansible/issues/17324
  12. local_volume_provisioner_storage_classes: |
  13. {
  14. "{{ local_volume_provisioner_storage_class | default('local-storage') }}": {
  15. "host_dir": "{{ local_volume_provisioner_base_dir | default('/mnt/disks') }}",
  16. "mount_dir": "{{ local_volume_provisioner_mount_dir | default('/mnt/disks') }}",
  17. "volume_mode": "Filesystem",
  18. "fs_type": "ext4"
  19. }
  20. }
  21. local_volume_provisioner_log_level: 2