diff --git a/bitnami/kubewatch/Chart.yaml b/bitnami/kubewatch/Chart.yaml index 02c829a7e3..9878ea2f61 100644 --- a/bitnami/kubewatch/Chart.yaml +++ b/bitnami/kubewatch/Chart.yaml @@ -28,4 +28,4 @@ name: kubewatch sources: - https://github.com/bitnami/bitnami-docker-kubewatch - https://github.com/bitnami-labs/kubewatch -version: 3.1.4 +version: 3.2.0 diff --git a/bitnami/kubewatch/README.md b/bitnami/kubewatch/README.md index da00ac7f84..a92e3b1579 100644 --- a/bitnami/kubewatch/README.md +++ b/bitnami/kubewatch/README.md @@ -134,6 +134,7 @@ The following tables lists the configurable parameters of the Kubewatch chart an | `affinity` | Affinity for pod assignment | `{}` (evaluated as a template) | | `nodeSelector` | Node labels for pod assignment | `{}` (evaluated as a template) | | `tolerations` | Tolerations for pod assignment | `[]` (evaluated as a template) | +| `priorityClassName` | Controller priorityClassName | `nil` | | `podLabels` | Extra labels for Kubewatch pods | `{}` | | `podAnnotations` | Annotations for Kubewatch pods | `{}` | | `extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for Kubewatch container(s) | `[]` | diff --git a/bitnami/kubewatch/templates/deployment.yaml b/bitnami/kubewatch/templates/deployment.yaml index 0955934e05..15a20e59be 100644 --- a/bitnami/kubewatch/templates/deployment.yaml +++ b/bitnami/kubewatch/templates/deployment.yaml @@ -43,6 +43,9 @@ spec: {{- if .Values.tolerations }} tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.tolerations "context" $) | nindent 8 }} {{- end }} + {{- if .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName | quote }} + {{- end }} restartPolicy: Always serviceAccountName: {{ include "kubewatch.serviceAccountName" . }} {{- if .Values.podSecurityContext.enabled }} diff --git a/bitnami/kubewatch/values.yaml b/bitnami/kubewatch/values.yaml index 4a8ec67d31..1ab3a48164 100644 --- a/bitnami/kubewatch/values.yaml +++ b/bitnami/kubewatch/values.yaml @@ -241,6 +241,11 @@ nodeSelector: {} ## tolerations: [] +## Pod priority +## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ +## +# priorityClassName: "" + ## Pod extra labels ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ ##