values.yaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # Default values for nfs-client-provisioner.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. replicaCount: 1
  5. strategyType: Recreate
  6. image:
  7. repository: quay.io/external_storage/nfs-client-provisioner
  8. tag: v3.1.0-k8s1.11
  9. pullPolicy: IfNotPresent
  10. nfs:
  11. server:
  12. path: /ifs/kubernetes
  13. mountOptions:
  14. # For creating the StorageClass automatically:
  15. storageClass:
  16. create: true
  17. # Set a provisioner name. If unset, a name will be generated.
  18. # provisionerName:
  19. # Set StorageClass as the default StorageClass
  20. # Ignored if storageClass.create is false
  21. defaultClass: false
  22. # Set a StorageClass name
  23. # Ignored if storageClass.create is false
  24. name: nfs-client
  25. # Allow volume to be expanded dynamically
  26. allowVolumeExpansion: true
  27. # Method used to reclaim an obsoleted volume
  28. reclaimPolicy: Delete
  29. # When set to false your PVs will not be archived by the provisioner upon deletion of the PVC.
  30. archiveOnDelete: true
  31. # Set access mode - ReadWriteOnce, ReadOnlyMany or ReadWriteMany
  32. accessModes: ReadWriteOnce
  33. ## For RBAC support:
  34. rbac:
  35. # Specifies whether RBAC resources should be created
  36. create: true
  37. # If true, create & use Pod Security Policy resources
  38. # https://kubernetes.io/docs/concepts/policy/pod-security-policy/
  39. podSecurityPolicy:
  40. enabled: false
  41. ## Set pod priorityClassName
  42. # priorityClassName: ""
  43. serviceAccount:
  44. # Specifies whether a ServiceAccount should be created
  45. create: true
  46. # The name of the ServiceAccount to use.
  47. # If not set and create is true, a name is generated using the fullname template
  48. name:
  49. resources: {}
  50. # limits:
  51. # cpu: 100m
  52. # memory: 128Mi
  53. # requests:
  54. # cpu: 100m
  55. # memory: 128Mi
  56. nodeSelector: {}
  57. tolerations: []
  58. affinity: {}