Skip to content

Commit

Permalink
Update comments about OIDC RBAC groups. (#3725)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvn authored Oct 30, 2024
1 parent 662ce8b commit 14bf159
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cost-analyzer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -374,19 +374,19 @@ oidc:
rbac:
enabled: false
# groups:
# - name: admin
# enabled: false # If admin is disabled, all authenticated users will be able to make configuration changes to the kubecost frontend
# - name: admin # Admins have permissions to edit Kubecost settings and save reports
# enabled: false
# claimName: "roles" # Kubecost matches this string against the JWT's payload key containing RBAC info (this value is unique across identity providers)
# claimValues: # Kubecost matches these strings with the roles created in your identity provider
# - "admin"
# - "superusers"
# - name: readonly
# enabled: false # If readonly is disabled, all authenticated users will default to readonly
# - name: readonly # Readonly users do not have permissions to edit Kubecost settings or save reports.
# enabled: false
# claimName: "roles"
# claimValues:
# - "readonly"
# - name: editor
# enabled: false # If editor is enabled, editors will be allowed to edit reports/alerts scoped to them, and act as readers otherwise. Users will never default to editor.
# - name: editor # Editors have permissions to edit reports/alerts and act as readers otherwise
# enabled: false
# claimName: "roles"
# claimValues:
# - "editor"
Expand Down

0 comments on commit 14bf159

Please sign in to comment.