feat(argo-rollouts): Support extraArgs for controller and dashboard (#978)
* feat(argo-rollouts): Support extraArgs for controller and dashboard Adding support for additional arguments that are passed to the controller and the dashboard. Following the pattern of other Argo charts by re-using the name `extraArgs` for the value. Refs: https://github.com/argoproj/argo-helm/issues/969 Signed-off-by: Sebastian J <zeeman@zeeman.de> * Update charts/argo-rollouts/templates/controller/deployment.yaml Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Signed-off-by: Sebastian J <zeeman@zeeman.de> * Update charts/argo-rollouts/templates/dashboard/deployment.yaml Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Signed-off-by: Sebastian J <zeeman@zeeman.de> * PR comments Signed-off-by: Sebastian J <zeeman@zeeman.de> * Fix newly added parameters in README Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Fix changelog keyword Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
a992c96053
commit
85f3039265
5 changed files with 19 additions and 3 deletions
|
|
@ -17,6 +17,10 @@ controller:
|
|||
tag: ""
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
## Additional command line arguments to pass to rollouts-controller
|
||||
##
|
||||
extraArgs: []
|
||||
|
||||
resources: {}
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
|
|
@ -110,6 +114,9 @@ dashboard:
|
|||
repository: argoproj/kubectl-argo-rollouts
|
||||
tag: ""
|
||||
pullPolicy: IfNotPresent
|
||||
## Additional command line arguments to pass to rollouts-dashboard
|
||||
##
|
||||
extraArgs: []
|
||||
resources: {}
|
||||
podSecurityContext:
|
||||
runAsNonRoot: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue