File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ and their default values.
5252| ` image.pullPolicy ` | Step Issuer image pull policy | ` IfNotPresent ` |
5353| ` deployment.args.enableLeaderElection ` | Enable k8s controller leader election. | ` true ` |
5454| ` deployment.args.disableApprovalCheck ` | To disable cert-manager approvals on old version of cert-manager. | ` false ` |
55- | ` deployment.strategy ` | To change the deployment strategy. | ` {} ` |
55+ | ` deployment.strategy ` | To change the deployment strategy. | ` {} ` |
56+ | ` deployment.priorityClassName ` | Pod priority for the Kubernetes scheduler | ` "" ` |
5657| ` stepIssuer.create ` | If we should automatically create a StepIssuer | ` false ` |
5758| ` stepIssuer.caUrl ` | Step Certificates CA URL. This is usually the step certificates service FQDN. | ` "" ` |
5859| ` stepIssuer.caBundle ` | Step Certificates root certificate in a single-line base64 string. | ` "" ` |
Original file line number Diff line number Diff line change 3030 {{- if .Values.serviceAccount.create }}
3131 serviceAccountName : {{ include "step-issuer.serviceAccountName" . }}
3232 {{- end }}
33+ {{- with $.Values.deployment.priorityClassName }}
34+ priorityClassName : {{ . }}
35+ {{- end }}
3336 containers :
3437 - image : " {{ .Values.kubeRBACproxy.image.repository }}:{{ .Values.kubeRBACproxy.image.tag }}"
3538 imagePullPolicy : {{ .Values.kubeRBACproxy.image.pullPolicy }}
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ deployment:
3535 terminationGracePeriodSeconds : 10
3636 # Strategy used for the deployment
3737 strategy : {}
38+ priorityClassName : " "
3839
3940resources :
4041 limits :
You can’t perform that action at this time.
0 commit comments