File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.15.2
33kubeVersion : " >=1.16.0-0"
44description : A Helm chart for velero
55name : velero
6- version : 8.5 .0
6+ version : 8.6 .0
77home : https://github.com/vmware-tanzu/velero
88icon : https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
99sources :
Original file line number Diff line number Diff line change 7272 - name : host-pods
7373 hostPath :
7474 path : {{ .Values.nodeAgent.podVolumePath }}
75+ - name : host-plugins
76+ hostPath :
77+ path : {{ .Values.nodeAgent.pluginVolumePath | default "/var/lib/kubelet/plugins" }}
7578 {{- if .Values.nodeAgent.useScratchEmptyDir }}
7679 - name : scratch
7780 emptyDir : {}
@@ -120,6 +123,9 @@ spec:
120123 - name : host-pods
121124 mountPath : /host_pods
122125 mountPropagation : HostToContainer
126+ - name : host-plugins
127+ mountPath : /host_plugins
128+ mountPropagation : HostToContainer
123129 {{- if .Values.nodeAgent.useScratchEmptyDir }}
124130 - name : scratch
125131 mountPath : /scratch
Original file line number Diff line number Diff line change @@ -536,6 +536,7 @@ deployNodeAgent: false
536536
537537nodeAgent :
538538 podVolumePath : /var/lib/kubelet/pods
539+ pluginVolumePath : /var/lib/kubelet/plugins
539540 # Pod priority class name to use for the node-agent daemonset. Optional.
540541 priorityClassName : " "
541542 # Resource requests/limits to specify for the node-agent daemonset deployment. Optional.
You can’t perform that action at this time.
0 commit comments