Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
3 changes: 3 additions & 0 deletions charts/trino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,9 @@ Fast distributed SQL query engine for big data analytics that helps you explore
* `serviceAccount.create` - bool, default: `false`

Specifies whether a service account should be created
* `serviceAccount.automount` - bool, default: `true`

Automatically mount a ServiceAccount's API credentials?
* `serviceAccount.name` - string, default: `""`

The name of the service account to use. If not set and create is true, a name is generated using the fullname template
Expand Down
1 change: 1 addition & 0 deletions charts/trino/templates/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ metadata:
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/trino/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,8 @@ auth: {}
serviceAccount:
# -- Specifies whether a service account should be created
create: false
# -- Automatically mount a ServiceAccount's API credentials?
automount: true
Comment thread
nineinchnick marked this conversation as resolved.
Outdated
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
Expand Down
Loading