Skip to content

Commit 888821a

Browse files
authored
Merge pull request #118 from gman0/helm-cleanup
chart: minor clean up and fixing hard-coded paths
2 parents 5af02d6 + 64ef2e1 commit 888821a

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

deployments/helm/cvmfs-csi/templates/nodeplugin-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ spec:
168168
mountPath: {{ .Values.kubeletDirectory }}/plugins
169169
mountPropagation: Bidirectional
170170
- name: pods-mount-dir
171-
mountPath: /var/lib/kubelet/pods
171+
mountPath: {{ .Values.kubeletDirectory }}/pods
172172
mountPropagation: Bidirectional
173173
- mountPath: /sys
174174
name: host-sys
@@ -199,7 +199,7 @@ spec:
199199
type: DirectoryOrCreate
200200
- name: pods-mount-dir
201201
hostPath:
202-
path: /var/lib/kubelet/pods
202+
path: {{ .Values.kubeletDirectory }}/pods
203203
type: Directory
204204
- name: host-sys
205205
hostPath:

deployments/helm/cvmfs-csi/values.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,3 @@ fullNameOverride: ""
283283
# Extra Kubernetes object metadata labels to be added the ones generated
284284
# with cvmfs-csi.common.metaLabels template.
285285
extraMetaLabels: {}
286-
287-
# Temporary workaround for CVMFS client hangs when rlimit_nofile is too high.
288-
# See https://github.com/cvmfs-contrib/cvmfs-csi/issues/57 for details.
289-
# NOTE: this value will be deprecated once the issue is fixed.
290-
# Empty value "" disables the workaround.
291-
_rlimit_nofile: "1000000"

0 commit comments

Comments
 (0)