Skip to content
Open
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/gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ A Helm chart for Trino Gateway
Specifies whether a service account should be created
* `serviceAccount.automount` - bool, default: `true`

Automatically mount a ServiceAccount's API credentials?
Automatically mount a ServiceAccount's API credentials
* `serviceAccount.annotations` - object, default: `{}`

Annotations to add to the service account
Expand Down
2 changes: 1 addition & 1 deletion charts/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ securityContext: {}
serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Automatically mount a ServiceAccount's API credentials?
# -- Automatically mount a ServiceAccount's API credentials
automount: true
# -- Annotations to add to the service account
annotations: {}
Expand Down
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
# -- 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