Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/trino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ Fast distributed SQL query engine for big data analytics that helps you explore
```
Set the name of a secret containing this file in the group.db key
```yaml
groupAuthSecret: "trino-group-authentication"
groupsAuthSecret: "trino-groups-authentication"
```
* `serviceAccount.create` - bool, default: `false`

Expand Down
4 changes: 2 additions & 2 deletions charts/trino/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ Create the secret name for the file-based authentication's password file
Create the secret name for the group-provider file
*/}}
{{- define "trino.groupsSecretName" -}}
{{- if and .Values.auth .Values.auth.groupAuthSecret }}
{{- .Values.auth.groupAuthSecret | trunc 63 | trimSuffix "-" }}
{{- if and .Values.auth .Values.auth.groupsAuthSecret }}
{{- .Values.auth.groupsAuthSecret }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if hasPrefix .Release.Name $name }}
Expand Down
2 changes: 1 addition & 1 deletion charts/trino/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ auth: {}
# ```
# Set the name of a secret containing this file in the group.db key
# ```yaml
# groupAuthSecret: "trino-group-authentication"
# groupsAuthSecret: "trino-groups-authentication"
# ```

serviceAccount:
Expand Down