Skip to content

Commit

Permalink
feat(ingress-istio-controller): Add priority class func (#454)
Browse files Browse the repository at this point in the history
* feat(ingress-istio-controller): Add priority class func

* feat(ingress-istio-controller): Add priority class func

---------

Co-authored-by: will.hearn <william.hearn@statcan.gc.ca>
  • Loading branch information
sylus and statcan-svc authored Nov 8, 2023
1 parent e0bde94 commit 5132168
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stable/ingress-istio-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.3.0
version: 1.4.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 3 additions & 0 deletions stable/ingress-istio-controller/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
serviceAccountName: {{ include "ingress-istio-controller.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions stable/ingress-istio-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000

## PriorityClassName indicates the Pod priority and hence importance of a Pod relative to other Pods.
priorityClassName: ""

securityContext: {}
# capabilities:
# drop:
Expand Down

0 comments on commit 5132168

Please sign in to comment.