5d1fe64bc8
- Update and re-work the documentation: - Update links - Fix formatting (especially for lists) - Remove documentation about `useAlphaApi`, a flag only for k8s versions < v1.10 - Attempt to clarify the doc - Update to version 1.5.0 - Remove PodSecurityPolicy (deprecated in k8s v1.21+) - Update ClusterRole following upstream (cf https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/pull/292) - Add nodeSelector to DaemonSet (following upstream)
20 lines
882 B
YAML
20 lines
882 B
YAML
---
|
|
local_volume_provisioner_namespace: "kube-system"
|
|
# List of node labels to be copied to the PVs created by the provisioner
|
|
local_volume_provisioner_nodelabels: []
|
|
# - kubernetes.io/hostname
|
|
# - topology.kubernetes.io/region
|
|
# - topology.kubernetes.io/zone
|
|
local_volume_provisioner_tolerations: []
|
|
local_volume_provisioner_use_node_name_only: false
|
|
# Leverages Ansible's string to Python datatype casting. Otherwise the dict_key isn't substituted.
|
|
# see https://github.com/ansible/ansible/issues/17324
|
|
local_volume_provisioner_storage_classes: |
|
|
{
|
|
"{{ local_volume_provisioner_storage_class | default('local-storage') }}": {
|
|
"host_dir": "{{ local_volume_provisioner_base_dir | default ('/mnt/disks') }}",
|
|
"mount_dir": "{{ local_volume_provisioner_mount_dir | default('/mnt/disks') }}",
|
|
"volume_mode": "Filesystem",
|
|
"fs_type": "ext4"
|
|
}
|
|
}
|