Corrected inline comments

Signed-off-by: Richard Johansson <richard.jimmy.johansson@gmail.com>
This commit is contained in:
Richard Johansson 2023-01-20 16:10:12 +01:00
parent 5830eba390
commit 8adbe5b439
4 changed files with 7 additions and 5 deletions

View file

@ -55,9 +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.templates | object | `{}` | Notification templates |
| notifications.triggers | object | `{}` | The trigger defines the condition when the notification should be sent |
| providerRBAC.enabled | bool | `true` | Enables addition of provider-specific RBAC rules to the controller Role and ClusterRole |
| providerRBAC.enabled | bool | `true` | Toggles 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.apisix | bool | `true` | Adds RBAC rules for the Traefik provider |
| providerRBAC.providers.apisix | bool | `true` | Adds RBAC rules for the Apisix 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.istio | bool | `true` | Adds RBAC rules for the Istio provider |

View file

@ -244,7 +244,7 @@ rules:
- update
{{- end }}
{{- if .Values.providerRBAC.providers.apisix }}
# Traefik access needed when using the Traefik provider
# Traefik access needed when using the Apisix provider
- apiGroups:
- apisix.apache.org
resources:

View file

@ -233,6 +233,7 @@ rules:
- patch
{{- end }}
{{- if .Values.providerRBAC.providers.traefik }}
# Traefik access needed when using the Traefik provider
- apiGroups:
- traefik.containo.us
resources:
@ -243,6 +244,7 @@ rules:
- update
{{- end }}
{{- if .Values.providerRBAC.providers.apisix }}
# Traefik access needed when using the Apisix provider
- apiGroups:
- apisix.apache.org
resources:

View file

@ -191,7 +191,7 @@ imagePullSecrets: []
# - name: argo-pull-secret
providerRBAC:
# -- Enables addition of provider-specific RBAC rules to the controller Role and ClusterRole
# -- Toggles addition of provider-specific RBAC rules to the controller Role and ClusterRole
enabled: true
# providerRBAC.enabled must be true in order to toggle the individual providers
providers:
@ -207,7 +207,7 @@ providerRBAC:
awsAppMesh: true
# -- Adds RBAC rules for the Traefik provider
traefik: true
# -- Adds RBAC rules for the Traefik provider
# -- Adds RBAC rules for the Apisix provider
apisix: true
dashboard: