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
5 changes: 4 additions & 1 deletion deploy/helm/postee/templates/postee-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.posteUi.priorityClassName }}
priorityClassName: {{ .Values.posteUi.priorityClassName }}
{{- end }}
serviceAccountName: {{ include "postee.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
Expand Down Expand Up @@ -88,4 +91,4 @@ spec:
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
3 changes: 3 additions & 0 deletions deploy/helm/postee/templates/postee.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
serviceAccountName: {{ include "postee.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
Expand Down
5 changes: 5 additions & 0 deletions deploy/helm/postee/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ posteUi:
# By default `tag` is taken from `.Chart.AppVersion`
# To use different version - uncomment this line and enter the desired version
# tag: ""
## set priorityClassName for the postee-ui deployment
# priorityClassName: system-cluster-critical

configuration:
# If set to true, ensure the externally generated secret to be named
Expand All @@ -213,6 +215,9 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

## set priorityClassName for the postee-ui deployment
# priorityClassName: system-cluster-critical

serviceAccount:
# Specifies whether a service account should be created
create: true
Expand Down