From b41f40ceef035bc07612ab7ee9b869c605614910 Mon Sep 17 00:00:00 2001 From: GuyTempleton Date: Tue, 14 Dec 2021 18:12:02 +0000 Subject: [PATCH] Charts - CA - Default to system-cluster-critical priority class --- charts/cluster-autoscaler/Chart.yaml | 2 +- charts/cluster-autoscaler/README.md | 2 +- charts/cluster-autoscaler/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/cluster-autoscaler/Chart.yaml b/charts/cluster-autoscaler/Chart.yaml index 977de8174195..febbbef36699 100644 --- a/charts/cluster-autoscaler/Chart.yaml +++ b/charts/cluster-autoscaler/Chart.yaml @@ -17,4 +17,4 @@ name: cluster-autoscaler sources: - https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler type: application -version: 9.10.9 +version: 9.11.0 diff --git a/charts/cluster-autoscaler/README.md b/charts/cluster-autoscaler/README.md index b7ac1b2a537c..1dd16895f601 100644 --- a/charts/cluster-autoscaler/README.md +++ b/charts/cluster-autoscaler/README.md @@ -382,7 +382,7 @@ Though enough for the majority of installations, the default PodSecurityPolicy _ | podAnnotations | object | `{}` | Annotations to add to each pod. | | podDisruptionBudget | object | `{"maxUnavailable":1}` | Pod disruption budget. | | podLabels | object | `{}` | Labels to add to each pod. | -| priorityClassName | string | `""` | priorityClassName | +| priorityClassName | string | `"system-cluster-critical"` | priorityClassName | | priorityConfigMapAnnotations | object | `{}` | Annotations to add to `cluster-autoscaler-priority-expander` ConfigMap. | | prometheusRule.additionalLabels | object | `{}` | Additional labels to be set in metadata. | | prometheusRule.enabled | bool | `false` | If true, creates a Prometheus Operator PrometheusRule. | diff --git a/charts/cluster-autoscaler/values.yaml b/charts/cluster-autoscaler/values.yaml index 323710bada0d..da683d7ecdee 100644 --- a/charts/cluster-autoscaler/values.yaml +++ b/charts/cluster-autoscaler/values.yaml @@ -239,7 +239,7 @@ podLabels: {} additionalLabels: {} # priorityClassName -- priorityClassName -priorityClassName: "" +priorityClassName: "system-cluster-critical" rbac: # rbac.create -- If `true`, create and use RBAC resources.