Commit 68e47fa 1 parent fb6b579 commit 68e47fa Copy full SHA for 68e47fa
File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 82
82
{{- range $key, $value := .Values.env }}
83
83
- name : {{ $key }}
84
84
value : {{ $value | quote }}
85
+ {{- end }}
86
+ {{- with .Values.extraEnv }}
87
+ {{- toYaml .| nindent 12 }}
85
88
{{- end }}
86
89
- name : MY_NODE_NAME
87
90
valueFrom :
Original file line number Diff line number Diff line change 88
88
VPC_CNI_VERSION : " v1.18.2"
89
89
NETWORK_POLICY_ENFORCING_MODE : " standard"
90
90
91
+ # Add env from configMap or from secrets
92
+ # - name: ENV_VAR1
93
+ # valueFrom:
94
+ # configMapKeyRef:
95
+ # name: example-config
96
+ # key: ENV_VAR1
97
+ # - name: ENV_VAR2
98
+ # valueFrom:
99
+ # configMapKeyRef:
100
+ # name: example-config
101
+ # key: ENV_VAR2
102
+ # - name: SECRET_VAR1
103
+ # valueFrom:
104
+ # secretKeyRef:
105
+ # name: example-secret
106
+ # key: SECRET_VAR1
107
+ extraEnv : []
108
+
109
+
91
110
# this flag enables you to use the match label that was present in the original daemonset deployed by EKS
92
111
# You can then annotate and label the original aws-node resources and 'adopt' them into a helm release
93
112
originalMatchLabels : false
You can’t perform that action at this time.
0 commit comments