Skip to content

Commit

Permalink
Merge pull request #127 from blend/chart-priority-class
Browse files Browse the repository at this point in the history
Support custom `priorityClassName` in the helm chart
  • Loading branch information
k8s-ci-robot authored Oct 17, 2022
2 parents d186f0a + 1120f23 commit 8284594
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions charts/cluster-proportional-autoscaler/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apiVersion: v2
name: cluster-proportional-autoscaler
version: 1.0.0
appVersion: 1.8.4
version: 1.0.1
appVersion: 1.8.6
description: This chart is used to deploy an instance of the cluster-proportional-autoscaler.
maintainers:
- name: krmichel
url: https://github.com/krmichel
- name: d-mcd
url: https://github.com/d-mcd
url: https://github.com/d-mcd
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,6 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . | quote }}
{{- end }}
11 changes: 6 additions & 5 deletions charts/cluster-proportional-autoscaler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ options:
maxSyncFailures:
namespace:
nodeLabels: {}
# label1: value1
# label2: value2
# label1: value1
# label2: value2
pollPeriodSeconds:
stdErrThreshold:
target:
vmodule:
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
# fsGroup: 2000
replicaCount: 1
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand All @@ -57,14 +57,14 @@ resources: {}
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# memory: 128Mi
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# runAsUser: 1000
serviceAccount:
create: true
annotations: {}
Expand All @@ -73,3 +73,4 @@ serviceAccount:
# If set and create is false, no service account will be created and the expectation is that the provided service account already exists or it will use the "default" service account
name:
tolerations: []
priorityClassName: ""

0 comments on commit 8284594

Please sign in to comment.