Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
- name: mountpoint-dir
mountPath: {{ .Values.kubeletPath }}/pods
mountPropagation: HostToContainer
{{- if or .Values.useFipsEndpoint .Values.awsRegion }}
{{- if or .Values.useFipsEndpoint .Values.awsRegion .Values.env }}
env:
{{- if .Values.useFipsEndpoint }}
- name: AWS_USE_FIPS_ENDPOINT
Expand All @@ -75,6 +75,9 @@ spec:
- name: AWS_REGION
value: {{ .Values.awsRegion | quote }}
{{- end }}
{{- with .Values.env }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- end }}
volumes:
- name: providervol
Expand Down
2 changes: 2 additions & 0 deletions charts/secrets-store-csi-driver-provider-aws/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@ dnsConfig: {}

secrets-store-csi-driver:
install: true

env: []