File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,8 @@ The following tables lists the configurable parameters of the Flagger chart and
177177| ` podDisruptionBudget.minAvailable ` | The minimal number of available replicas that will be set in the PodDisruptionBudget | ` 1 ` |
178178| ` podDisruptionBudget.minAvailable ` | The minimal number of available replicas that will be set in the PodDisruptionBudget | ` 1 ` |
179179| ` noCrossNamespaceRefs ` | If ` true ` , cross namespace references to custom resources will be disabled | ` false ` |
180- | ` namespace ` | When specified, Flagger will restrict itself to watching Canary objects from that namespace | ` "" ` |
180+ | ` additionalContainers ` | List of additional containers that will be added to the deployment | ` [] ` |
181+ | ` namespace ` | When specified, Flagger will restrict itself to watching Canary objects from that namespace | ` "" ` |
181182
182183Specify each parameter using the ` --set key=value[,key=value] ` argument to ` helm upgrade ` . For example,
183184
Original file line number Diff line number Diff line change @@ -167,6 +167,9 @@ spec:
167167 {{- end }}
168168 resources :
169169{{ toYaml .Values.resources | indent 12 }}
170+ {{- if .Values.additionalContainers }}
171+ {{- toYaml .Values.additionalContainers | nindent 8}}
172+ {{- end }}
170173 {{- with .Values.nodeSelector }}
171174 nodeSelector :
172175{{ toYaml . | indent 8 }}
Original file line number Diff line number Diff line change @@ -177,3 +177,5 @@ podDisruptionBudget:
177177podLabels : {}
178178
179179noCrossNamespaceRefs : false
180+
181+ additionalContainers : []
You can’t perform that action at this time.
0 commit comments