[incubator/kube-downscaler] - Add priorityClassName and update image tag (#23933)

* [incubator/kube-downscaler] - Add priorityClassName and update image tag

Signed-off-by: Lord-Y <Lord-Y@users.noreply.github.com>

* [incubator/kube-downscaler] - Add if case for priorityClassName

Signed-off-by: Lord-Y <Lord-Y@users.noreply.github.com>
This commit is contained in:
Lord-Y
2020-10-21 06:02:19 -07:00
committed by GitHub
parent 5508c2cb2b
commit fc37da771f
4 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: kube-downscaler
apiVersion: v1
version: 0.5.0
version: 0.6.0
appVersion: 20.5.0
description: A Helm chart for kube-downscaler
home: https://github.com/hjacobs/kube-downscaler
+1
View File
@@ -65,6 +65,7 @@ The following tables lists the configurable parameters of the kube-downscaler ch
| `excludedDeployments` | Deployments to exclude from the downscaler | `[]` |
| `excludedNamespaces` | Namespaces to exclude from the downscaler | `[]` |
| `extraArgs` | Add extra args to docker command | `[]` |
| `priorityClassName` | Specifies the pod's priority class name | `''` |
> **Tip**: You can use the default [values.yaml](values.yaml)
@@ -69,3 +69,6 @@ spec:
{{ toYaml . | indent 8 }}
{{- end }}
serviceAccountName: {{ if .Values.rbac.create }}{{ template "kube-downscaler.fullname" . }}{{ else }}"{{ .Values.rbac.serviceAccountName }}"{{ end }}
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
{{- end }}
+3 -1
View File
@@ -36,7 +36,7 @@ rbac:
image:
repository: hjacobs/kube-downscaler
tag: 20.5.0
tag: 20.10.0
pullPolicy: IfNotPresent
resources:
@@ -64,3 +64,5 @@ affinity: {}
podLabels: {}
podAnnotations: {}
priorityClassName: ""