2022-07-29 09:52:32 +00:00
# Default values for nutanix-csi-storage.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# parameters
# Legacy mode
#
# if legacy set to true we keep the old reverse domain notation for CSI driver name (com.nutanix.csi).
# need to be set to true only if upgrade and initialy installed with helm package before 2.2.x
legacy : false
# Openshift settings
#
openshift :
scc : false
masterIscsiConfig : false
workerIscsiConfig : false
# kubeletDir allows overriding the host location of kubelet's internal state.
kubeletDir : "/var/lib/kubelet"
# Global Settings for all pods
nodeSelector : {}
tolerations : [ ]
imagePullPolicy : IfNotPresent
# Storage Class settings
#
# choose for which mode (Volume, File, Dynamic File) storageclass need to be created
volumeClass : false
volumeClassName : "nutanix-volume"
volumeClassRetention : "Delete"
# volumeClassDescription: ""
fileClass : false
fileClassName : "nutanix-file"
fileClassRetention : "Delete"
dynamicFileClass : false
dynamicFileClassName : "nutanix-dynamicfile"
dynamicFileClassRetention : "Delete"
# dynamicFileClassDescription: ""
# Default Storage Class settings
#
# Decide wich storageclass will be the default
# value are: node, volume, file, dynfile
defaultStorageClass : none
# Nutanix Prism Elements settings
#
# Allow dynamic creation of Volumes and Fileshare
# needed if volumeClass or dynamicFileClass is set to true
2022-11-17 06:14:46 +00:00
## fully qualified domain name (FQDN) or the cluster virtual IP address (if one is not configured, use the virtual IP address of any Controller VM in the cluster).
# prismEndPoint:
2022-07-29 09:52:32 +00:00
2022-11-17 06:14:46 +00:00
## username of the Prism Element (PE) cluster admin
# username:
2022-07-29 09:52:32 +00:00
2022-11-17 06:14:46 +00:00
## password for the PE cluster admin.
# password:
## secret name that stores Nutanix cluster credentials
2022-07-29 09:52:32 +00:00
secretName : ntnx-secret
2022-11-17 06:14:46 +00:00
## Nutanix Prism Elements Existing Secret
2022-07-29 09:52:32 +00:00
#
2022-11-17 06:14:46 +00:00
2022-07-29 09:52:32 +00:00
# if set to false a new secret will not be created
createSecret : true
2022-11-17 06:14:46 +00:00
## Volumes Settings
2022-07-29 09:52:32 +00:00
#
2022-11-17 06:14:46 +00:00
## name of the Nutanix storage container
# storageContainer:
## Filesystem used in volume PV
2022-07-29 09:52:32 +00:00
fsType : xfs
lvmVolume : false
lvmDisks : 4
networkSegmentation : false
# Files Settings
#
2022-11-17 06:14:46 +00:00
## NFS server fully qualified domain name (FQDN) or IP address
# fileHost:
## path for the NFS share
# filePath:
2022-07-29 09:52:32 +00:00
# Dynamic Files Settings
#
2022-11-17 06:14:46 +00:00
## name of the file server. (As seen in the Prism Interface)
# fileServerName:
# Squash-type for dynamic files.
# Values are: none, root-squash, all-squash. Default is root-squash
dynamicFileSquashType : root-squash
2022-07-29 09:52:32 +00:00
# Volume metrics and CSI operations metrics configuration
#
servicemonitor :
enabled : false
labels :
# This should match the serviceMonitorSelector logic configured
# on the prometheus.
k8s-app : csi-driver
# Pod pecific Settings
#
controller :
replicas : 2
2022-11-17 06:14:46 +00:00
image : quay.io/karbon/ntnx-csi:v2.6.1
2022-07-29 09:52:32 +00:00
nodeSelector : {}
tolerations : [ ]
node :
2022-11-17 06:14:46 +00:00
image : quay.io/karbon/ntnx-csi:v2.6.1
2022-07-29 09:52:32 +00:00
nodeSelector : {}
tolerations : [ ]
sidecars :
registrar :
2023-03-03 14:27:03 +00:00
image : registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.6.0
2022-07-29 09:52:32 +00:00
provisioner :
2023-03-03 14:27:03 +00:00
image : registry.k8s.io/sig-storage/csi-provisioner:v3.3.0
imageLegacy : registry.k8s.io/sig-storage/csi-provisioner:v2.2.2
2022-07-29 09:52:32 +00:00
snapshotter :
2023-03-03 14:27:03 +00:00
image : registry.k8s.io/sig-storage/csi-snapshotter:v6.1.0
imageBeta : registry.k8s.io/sig-storage/csi-snapshotter:v3.0.3
2022-07-29 09:52:32 +00:00
resizer :
2023-03-03 14:27:03 +00:00
image : registry.k8s.io/sig-storage/csi-resizer:v1.6.0
2022-07-29 09:52:32 +00:00
livenessprobe :
2023-03-03 14:27:03 +00:00
image : registry.k8s.io/sig-storage/livenessprobe:v2.8.0
2022-07-29 09:52:32 +00:00
# Used for deployment test in kind cluster
#
kindtest : false