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
6 changes: 6 additions & 0 deletions charts/devlake/templates/deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.ui.serviceAccount.name }}
serviceAccountName: {{ . }}
{{- end }}
{{- with .Values.ui.securityContext }}
securityContext:
{{- toYaml . | nindent 8 }}
Expand Down Expand Up @@ -155,6 +158,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.lake.serviceAccount.name }}
serviceAccountName: {{ . }}
{{- end }}
{{- with .Values.lake.securityContext }}
securityContext:
{{- toYaml . | nindent 8 }}
Expand Down
10 changes: 10 additions & 0 deletions charts/devlake/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,11 @@ lake:
# subPath: test_file.yaml
volumeMounts: []

# Name of an existing ServiceAccount to use for the lake pod.
# If empty, the pod uses the namespace default ServiceAccount.
serviceAccount:
name: ""

ui:
replicaCount: 1
revisionHistoryLimit: 10
Expand Down Expand Up @@ -343,6 +348,11 @@ ui:

## Side Contaainer Configuration
extraContainers: []

# Name of an existing ServiceAccount to use for the config-ui pod.
# If empty, the pod uses the namespace default ServiceAccount.
serviceAccount:
name: ""
# - name: vault-agent
# image: vault:1.6.2
# args:
Expand Down
Loading