From 5026b234af3fcd1b26d3fdaaf8603e38458f21ec Mon Sep 17 00:00:00 2001 From: Ty Date: Thu, 25 Jul 2024 17:39:45 +0800 Subject: [PATCH] Update daemonset.yaml --- ofed-driver/chart/templates/daemonset.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ofed-driver/chart/templates/daemonset.yaml b/ofed-driver/chart/templates/daemonset.yaml index fa9d8d9..f7a4ec6 100644 --- a/ofed-driver/chart/templates/daemonset.yaml +++ b/ofed-driver/chart/templates/daemonset.yaml @@ -69,11 +69,11 @@ spec: level: "s0" env: - name: UNLOAD_STORAGE_MODULES - value: {{ .Values.config.unload_host_storage_modules }} + value: {{ .Values.config.unload_host_storage_modules | quote }} - name: ENABLE_NFSRDMA - value: {{ .Values.config.enable_nfsrdma }} + value: {{ .Values.config.enable_nfsrdma | quote }} - name: RESTORE_DRIVER_ON_POD_TERMINATION - value: {{ .Values.config.restore_hostdriver_on_termination }} + value: {{ .Values.config.restore_hostdriver_on_termination | quote }} {{- with .Values.extraEnv }} {{- toYaml . | nindent 12 }} {{- end }}