feat(argo-rollouts): flag to disable clusterrole/clusterrolebinding creation (#1388)
* feat(argo-rollouts): Add flag to optionally disable the creation of cluster roles (even when running in cluster mode) Signed-off-by: Joshua Helton <jdoghelton@gmail.com> * fix README.md with helm-docs.sh Signed-off-by: Joshua Helton <jdoghelton@gmail.com> Signed-off-by: Joshua Helton <jdoghelton@gmail.com> Co-authored-by: JM <jmeridth@gmail.com>
This commit is contained in:
parent
2125c7ac71
commit
b029a6dde3
8 changed files with 21 additions and 8 deletions
|
|
@ -6,6 +6,9 @@ keepCRDs: true
|
|||
# -- `false` runs controller in namespaced mode (does not require cluster RBAC)
|
||||
clusterInstall: true
|
||||
|
||||
# -- flag to enable creation of cluster aggregate roles (requires cluster RBAC)
|
||||
createClusterAggregateRoles: true
|
||||
|
||||
# -- String to partially override "argo-rollouts.fullname" template
|
||||
nameOverride:
|
||||
|
||||
|
|
@ -80,6 +83,9 @@ controller:
|
|||
# cpu: 50m
|
||||
# memory: 64Mi
|
||||
|
||||
# -- flag to enable creation of cluster controller role (requires cluster RBAC)
|
||||
createClusterRole: true
|
||||
|
||||
metrics:
|
||||
# -- Deploy metrics service
|
||||
enabled: false
|
||||
|
|
@ -181,6 +187,10 @@ dashboard:
|
|||
affinity: {}
|
||||
# -- [priorityClassName] for the dashboard server
|
||||
priorityClassName: ""
|
||||
|
||||
# -- flag to enable creation of dashbord cluster role (requires cluster RBAC)
|
||||
createClusterRole: true
|
||||
|
||||
# -- The number of dashboard pods to run
|
||||
replicas: 1
|
||||
image:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue