Skip to content

Commit

Permalink
fix: added priorityClassName support for edge deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk committed Nov 12, 2024
1 parent d3788f5 commit 89439bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/unleash-edge/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: https://docs.getunleash.io/img/logo.svg

type: application

version: 2.7.3
version: 2.7.4

appVersion: "v19.6.1"

Expand Down
4 changes: 3 additions & 1 deletion charts/unleash-edge/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ spec:
{{- if .Values.env }}
{{- toYaml .Values.env | nindent 12 }}
{{- end }}

securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand Down Expand Up @@ -102,6 +101,9 @@ spec:
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
{{ with .Values.volumes }}
volumes:
{{- range . }}
Expand Down

0 comments on commit 89439bf

Please sign in to comment.