Skip to content

Commit f86537c

Browse files
authored
Merge pull request #135 from Leaseweb/chart_no_cacert
fix(chart): Remove cacert volume, dnsPolicy from node ds
2 parents ed3d373 + 904c3c0 commit f86537c

File tree

3 files changed

+5
-19
lines changed

3 files changed

+5
-19
lines changed

charts/cloudstack-csi/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cloudstack-csi
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: 1.1.0
5+
version: 1.1.1
66
appVersion: 0.5.0
77
sources:
88
- https://github.com/Leaseweb/cloudstack-csi-driver

charts/cloudstack-csi/templates/csi-node-ds.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ spec:
169169
affinity: {{ toYaml .Values.node.affinity | nindent 8 }}
170170
nodeSelector: {{ toYaml .Values.node.nodeSelector | nindent 8 }}
171171
tolerations: {{ toYaml .Values.node.tolerations | nindent 8 }}
172-
dnsPolicy: {{ .Values.node.dnsPolicy }}
173172
{{- with .Values.node.hostAliases }}
174173
hostAliases:
175174
{{- toYaml . | nindent 8 }}

charts/cloudstack-csi/values.yaml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,7 @@ controller:
4646
repository: ghcr.io/leaseweb/cloudstack-csi-driver
4747
pullPolicy: IfNotPresent
4848
# tag: 0.4.1 # defaults to .Chart.AppVersion
49-
volumeMounts:
50-
- name: cacert
51-
mountPath: /etc/cacert
52-
readOnly: true
49+
volumeMounts: {}
5350
resources: {}
5451
extraArgs: {}
5552

@@ -80,10 +77,7 @@ controller:
8077
# seccompProfile:
8178
# type: RuntimeDefault
8279
# readOnlyRootFilesystem: true
83-
volumes:
84-
- name: cacert
85-
hostPath:
86-
path: /etc/cacert
80+
volumes: {}
8781
affinity: {}
8882
nodeSelector: {}
8983
tolerations: []
@@ -110,15 +104,8 @@ node:
110104
# tag: 0.4.1 # defaults to .Chart.AppVersion
111105
resources: {}
112106
extraArgs: {}
113-
volumeMounts:
114-
- name: cacert
115-
mountPath: /etc/cacert
116-
readOnly: true
117-
volumes:
118-
- name: cacert
119-
hostPath:
120-
path: /etc/cacert
121-
dnsPolicy: ClusterFirstWithHostNet
107+
volumeMounts: {}
108+
volumes: {}
122109
priorityClassName: ""
123110
podSecurityContext: {}
124111

0 commit comments

Comments
 (0)