feat(argo-rollouts): Update manifests for v1.0.1 (#752)
* feat(argo-rollouts): Update manifests for v1.0.1 Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix: add template function for labels Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix: Apply changes from code review Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com>
This commit is contained in:
parent
87855a4caa
commit
8deaa0a119
18 changed files with 248 additions and 107 deletions
|
|
@ -3,7 +3,6 @@ installCRDs: true
|
|||
clusterInstall: true
|
||||
|
||||
controller:
|
||||
name: argo-rollouts
|
||||
component: rollouts-controller
|
||||
## Node selectors and tolerations for server scheduling to nodes with taints
|
||||
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
||||
|
|
@ -12,8 +11,9 @@ controller:
|
|||
tolerations: []
|
||||
affinity: {}
|
||||
image:
|
||||
registry: quay.io
|
||||
repository: argoproj/argo-rollouts
|
||||
tag: v0.10.2
|
||||
tag: ""
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
resources: {}
|
||||
|
|
@ -31,7 +31,13 @@ controller:
|
|||
additionalAnnotations: {}
|
||||
|
||||
serviceAccount:
|
||||
name: argo-rollouts
|
||||
# Specifies whether a service account should be created
|
||||
create: true
|
||||
# Annotations to add to the service account
|
||||
annotations: {}
|
||||
# The name of the service account to use.
|
||||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
## Annotations to be added to all CRDs
|
||||
##
|
||||
|
|
@ -41,6 +47,21 @@ crdAnnotations: {}
|
|||
##
|
||||
podAnnotations: {}
|
||||
|
||||
## Security Context to set on pod level
|
||||
##
|
||||
podSecurityContext:
|
||||
runAsNonRoot: true
|
||||
|
||||
## Security Context to set on container level
|
||||
##
|
||||
containerSecurityContext: {}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
# readOnlyRootFilesystem: true
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
|
||||
## Annotations to be added to the Rollout service
|
||||
##
|
||||
serviceAnnotations: {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue