File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11apiVersion : v2
22name : lvm-localpv
33description : CSI Driver for dynamic provisioning of LVM Persistent Local Volumes.
4- version : 0.7.0
4+ version : 0.7.1
55appVersion : 0.7.0
66icon : https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
77home : http://www.openebs.io/
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ helm install openebs-lvmlocalpv openebs-lvmlocalpv/lvm-localpv --namespace opene
102102| ` lvmPlugin.image.pullPolicy ` | Image pull policy for openebs-lvm-plugin| ` IfNotPresent ` |
103103| ` lvmPlugin.image.tag ` | Image tag for openebs-lvm-plugin| ` 0.7.0 ` |
104104| ` lvmPlugin.metricsPort ` | The TCP port number used for exposing lvm-metrics | ` 9500 ` |
105+ | ` lvmPlugin.allowedTopologies ` | The comma seperated list of allowed node topologies | ` kubernetes.io/hostname, ` |
105106| ` lvmNode.driverRegistrar.image.registry ` | Registry for csi-node-driver-registrar image| ` k8s.gcr.io/ ` |
106107| ` lvmNode.driverRegistrar.image.repository ` | Image repository for csi-node-driver-registrar| ` sig-storage/csi-node-driver-registrar ` |
107108| ` lvmNode.driverRegistrar.image.pullPolicy ` | Image pull policy for csi-node-driver-registrar| ` IfNotPresent ` |
Original file line number Diff line number Diff line change @@ -103,6 +103,10 @@ spec:
103103 - name : METRICS_LISTEN_ADDRESS
104104 value : :{{ .Values.lvmPlugin.metricsPort }}
105105 {{- end }}
106+ {{- if .Values.lvmPlugin.allowedTopologies }}
107+ - name : ALLOWED_TOPOLOGIES
108+ value : {{ .Values.lvmPlugin.allowedTopologies }}
109+ {{- end }}
106110 volumeMounts :
107111 - name : plugin-dir
108112 mountPath : /plugin
Original file line number Diff line number Diff line change @@ -135,6 +135,8 @@ lvmPlugin:
135135 # The TCP port number used for exposing lvm-metrics.
136136 # If not set, service will not be created to expose metrics endpoint to serviceMonitor and listen-address flag will not be set.
137137 metricsPort : 9500
138+ # Comma seperated list of k8s worker node topologies
139+ allowedTopologies : " kubernetes.io/hostname,"
138140
139141role : openebs-lvm
140142
You can’t perform that action at this time.
0 commit comments