Skip to content

Commit

Permalink
Enable SDC by default if not explicitly set (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdawe authored Sep 20, 2024
1 parent 3a09206 commit daa25da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/csi-vxflexos/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ spec:
- name: host-opt-emc-path
mountPath: /host_opt_emc_path
{{- end }}
{{- if and (hasKey .Values.node "sdc") (eq .Values.node.sdc.enabled true) }}
{{- if or (not (hasKey (.Values.node.sdc) "enabled")) (eq .Values.node.sdc.enabled true) }}
initContainers:
- name: sdc
securityContext:
Expand Down

0 comments on commit daa25da

Please sign in to comment.