Aligned with main
Signed-off-by: Richard Johansson <richard.jimmy.johansson@gmail.com>
This commit is contained in:
parent
2fb24d2948
commit
5830eba390
3 changed files with 7 additions and 2 deletions
|
@ -55,8 +55,9 @@ If dashboard is installed by `--set dashboard.enabled=true`, checkout the argo-r
|
||||||
| notifications.secret.items | object | `{}` | Generic key:value pairs to be inserted into the notifications secret |
|
| notifications.secret.items | object | `{}` | Generic key:value pairs to be inserted into the notifications secret |
|
||||||
| notifications.templates | object | `{}` | Notification templates |
|
| notifications.templates | object | `{}` | Notification templates |
|
||||||
| notifications.triggers | object | `{}` | The trigger defines the condition when the notification should be sent |
|
| notifications.triggers | object | `{}` | The trigger defines the condition when the notification should be sent |
|
||||||
| providerRBAC.enabled | bool | `true` | Adds provider-specific RBAC rules to the controller Role and ClusterRole |
|
| providerRBAC.enabled | bool | `true` | Enables addition of provider-specific RBAC rules to the controller Role and ClusterRole |
|
||||||
| providerRBAC.providers.ambassador | bool | `true` | Adds RBAC rules for the Ambassador provider |
|
| providerRBAC.providers.ambassador | bool | `true` | Adds RBAC rules for the Ambassador provider |
|
||||||
|
| providerRBAC.providers.apisix | bool | `true` | Adds RBAC rules for the Traefik provider |
|
||||||
| providerRBAC.providers.awsAppMesh | bool | `true` | Adds RBAC rules for the AWS App Mesh provider |
|
| providerRBAC.providers.awsAppMesh | bool | `true` | Adds RBAC rules for the AWS App Mesh provider |
|
||||||
| providerRBAC.providers.awsLoadBalancerController | bool | `true` | Adds RBAC rules for the AWS Load Balancer Controller provider |
|
| providerRBAC.providers.awsLoadBalancerController | bool | `true` | Adds RBAC rules for the AWS Load Balancer Controller provider |
|
||||||
| providerRBAC.providers.istio | bool | `true` | Adds RBAC rules for the Istio provider |
|
| providerRBAC.providers.istio | bool | `true` | Adds RBAC rules for the Istio provider |
|
||||||
|
|
|
@ -208,6 +208,7 @@ rules:
|
||||||
verbs:
|
verbs:
|
||||||
- list
|
- list
|
||||||
- get
|
- get
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.providerRBAC.providers.awsAppMesh }}
|
{{- if .Values.providerRBAC.providers.awsAppMesh }}
|
||||||
# AppMesh virtualservices/virtualrouter CRD read-only access needed for using the App Mesh provider
|
# AppMesh virtualservices/virtualrouter CRD read-only access needed for using the App Mesh provider
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
|
|
|
@ -191,8 +191,9 @@ imagePullSecrets: []
|
||||||
# - name: argo-pull-secret
|
# - name: argo-pull-secret
|
||||||
|
|
||||||
providerRBAC:
|
providerRBAC:
|
||||||
# -- Adds provider-specific RBAC rules to the controller Role and ClusterRole
|
# -- Enables addition of provider-specific RBAC rules to the controller Role and ClusterRole
|
||||||
enabled: true
|
enabled: true
|
||||||
|
# providerRBAC.enabled must be true in order to toggle the individual providers
|
||||||
providers:
|
providers:
|
||||||
# -- Adds RBAC rules for the Istio provider
|
# -- Adds RBAC rules for the Istio provider
|
||||||
istio: true
|
istio: true
|
||||||
|
@ -206,6 +207,8 @@ providerRBAC:
|
||||||
awsAppMesh: true
|
awsAppMesh: true
|
||||||
# -- Adds RBAC rules for the Traefik provider
|
# -- Adds RBAC rules for the Traefik provider
|
||||||
traefik: true
|
traefik: true
|
||||||
|
# -- Adds RBAC rules for the Traefik provider
|
||||||
|
apisix: true
|
||||||
|
|
||||||
dashboard:
|
dashboard:
|
||||||
# -- Deploy dashboard server
|
# -- Deploy dashboard server
|
||||||
|
|
Loading…
Reference in a new issue