Skip to content

Commit

Permalink
fixup: make rbac.serviceAccount.enabled false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
aslafy-z authored Nov 15, 2024
1 parent d050a6e commit bba213e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ helm delete --namespace test my-application
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| rbac.enabled | bool | `true` | Enable RBAC. |
| rbac.serviceAccount.enabled | bool | `true` | Deploy a Service Account. |
| rbac.serviceAccount.enabled | bool | `false` | Deploy Service Account. |
| rbac.serviceAccount.name | string | `{{ include "application.name" $ }}` | Service Account Name. |
| rbac.serviceAccount.additionalLabels | object | `nil` | Additional labels for Service Account. |
| rbac.serviceAccount.annotations | object | `nil` | Annotations for Service Account. |
Expand Down
4 changes: 2 additions & 2 deletions application/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -655,9 +655,9 @@ rbac:
# @section -- RBAC Parameters
enabled: true
serviceAccount:
# -- (bool) Deploy a Service Account.
# -- (bool) Deploy Service Account.
# @section -- RBAC Parameters
enabled: true
enabled: false
# -- (string) Service Account Name.
# @default -- `{{ include "application.name" $ }}`
# @section -- RBAC Parameters
Expand Down

0 comments on commit bba213e

Please sign in to comment.