Commit 5d78a3a 1 parent 3f6792d commit 5d78a3a Copy full SHA for 5d78a3a
File tree 4 files changed +32
-0
lines changed
docs/sources/setup/install/helm
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ This is the generated reference for the Loki Helm Chart values.
53
53
"env": [ ] ,
54
54
"extraArgs": {},
55
55
"extraContainers": [ ] ,
56
+ "extraEnvFrom": [ ] ,
56
57
"extraVolumeMounts": [ ] ,
57
58
"extraVolumes": [ ] ,
58
59
"hostAliases": [ ] ,
@@ -129,6 +130,15 @@ This is the generated reference for the Loki Helm Chart values.
129
130
<td><pre lang="json">
130
131
[ ]
131
132
</pre >
133
+ </td >
134
+ </tr>
135
+ <tr>
136
+ <td>adminApi.extraEnvFrom</td>
137
+ <td>list</td>
138
+ <td>Environment variables from secrets or configmaps to add to the admin-api pods</td>
139
+ <td><pre lang="json">
140
+ [ ]
141
+ </pre >
132
142
</td >
133
143
</tr>
134
144
<tr>
@@ -3616,6 +3626,7 @@ false
3616
3626
"env": [ ] ,
3617
3627
"extraArgs": {},
3618
3628
"extraContainers": [ ] ,
3629
+ "extraEnvFrom": [ ] ,
3619
3630
"extraVolumeMounts": [ ] ,
3620
3631
"extraVolumes": [ ] ,
3621
3632
"hostAliases": [ ] ,
@@ -3695,6 +3706,15 @@ false
3695
3706
<td><pre lang="json">
3696
3707
[ ]
3697
3708
</pre >
3709
+ </td >
3710
+ </tr>
3711
+ <tr>
3712
+ <td>enterpriseGateway.extraEnvFrom</td>
3713
+ <td>list</td>
3714
+ <td>Environment variables from secrets or configmaps to add to the enterprise gateway pods</td>
3715
+ <td><pre lang="json">
3716
+ [ ]
3717
+ </pre >
3698
3718
</td >
3699
3719
</tr>
3700
3720
<tr>
Original file line number Diff line number Diff line change @@ -121,6 +121,10 @@ spec:
121
121
{{- if .Values.adminApi.env }}
122
122
{{ toYaml .Values.adminApi.env | nindent 12 }}
123
123
{{- end }}
124
+ {{- with .Values.adminApi.extraEnvFrom }}
125
+ envFrom :
126
+ {{- toYaml . | nindent 12 }}
127
+ {{- end }}
124
128
{{- with .Values.adminApi.extraContainers }}
125
129
{{ toYaml . | nindent 8 }}
126
130
{{- end }}
Original file line number Diff line number Diff line change @@ -114,6 +114,10 @@ spec:
114
114
{{- if .Values.enterpriseGateway.env }}
115
115
{{ toYaml .Values.enterpriseGateway.env | nindent 12 }}
116
116
{{- end }}
117
+ {{- with .Values.enterpriseGateway.extraEnvFrom }}
118
+ envFrom :
119
+ {{- toYaml . | nindent 12 }}
120
+ {{- end }}
117
121
{{- with .Values.enterpriseGateway.extraContainers }}
118
122
{{ toYaml . | nindent 8 }}
119
123
{{- end }}
Original file line number Diff line number Diff line change @@ -821,6 +821,8 @@ adminApi:
821
821
# - domain.tld
822
822
# -- Additional CLI arguments for the `admin-api` target
823
823
extraArgs : {}
824
+ # -- Environment variables from secrets or configmaps to add to the admin-api pods
825
+ extraEnvFrom : []
824
826
# -- Additional labels for the `admin-api` Deployment
825
827
labels : {}
826
828
# -- Additional annotations for the `admin-api` Deployment
@@ -1099,6 +1101,8 @@ enterpriseGateway:
1099
1101
# - domain.tld
1100
1102
# -- Additional CLI arguments for the `gateway` target
1101
1103
extraArgs : {}
1104
+ # -- Environment variables from secrets or configmaps to add to the enterprise gateway pods
1105
+ extraEnvFrom : []
1102
1106
# -- Additional labels for the `gateway` Pod
1103
1107
labels : {}
1104
1108
# -- Additional annotations for the `gateway` Pod
You can’t perform that action at this time.
0 commit comments