Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(chart): Remove cacert volume, dnsPolicy from node ds #135

Merged
merged 2 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/cloudstack-csi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: cloudstack-csi
description: A Helm chart for Kubernetes
type: application
version: 1.1.0
version: 1.1.1
appVersion: 0.5.0
sources:
- https://github.com/Leaseweb/cloudstack-csi-driver
Expand Down
1 change: 0 additions & 1 deletion charts/cloudstack-csi/templates/csi-node-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ spec:
affinity: {{ toYaml .Values.node.affinity | nindent 8 }}
nodeSelector: {{ toYaml .Values.node.nodeSelector | nindent 8 }}
tolerations: {{ toYaml .Values.node.tolerations | nindent 8 }}
dnsPolicy: {{ .Values.node.dnsPolicy }}
{{- with .Values.node.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
Expand Down
21 changes: 4 additions & 17 deletions charts/cloudstack-csi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,7 @@ controller:
repository: ghcr.io/leaseweb/cloudstack-csi-driver
pullPolicy: IfNotPresent
# tag: 0.4.1 # defaults to .Chart.AppVersion
volumeMounts:
- name: cacert
mountPath: /etc/cacert
readOnly: true
volumeMounts: {}
resources: {}
extraArgs: {}

Expand Down Expand Up @@ -80,10 +77,7 @@ controller:
# seccompProfile:
# type: RuntimeDefault
# readOnlyRootFilesystem: true
volumes:
- name: cacert
hostPath:
path: /etc/cacert
volumes: {}
affinity: {}
nodeSelector: {}
tolerations: []
Expand All @@ -110,15 +104,8 @@ node:
# tag: 0.4.1 # defaults to .Chart.AppVersion
resources: {}
extraArgs: {}
volumeMounts:
- name: cacert
mountPath: /etc/cacert
readOnly: true
volumes:
- name: cacert
hostPath:
path: /etc/cacert
dnsPolicy: ClusterFirstWithHostNet
volumeMounts: {}
volumes: {}
priorityClassName: ""
podSecurityContext: {}

Expand Down
Loading