Skip to content

Commit 3b89c39

Browse files
author
github-actions
committed
Update perfectscale-autoscaler chart with new package version v1.0.31
1 parent 542d34a commit 3b89c39

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

charts/psc-autoscaler/crds/workloadautomationstatus.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ spec:
8787
inPlaceResizedAt:
8888
type: string
8989
format: date-time
90+
automationAppliedAtByRevision:
91+
type: object
92+
x-kubernetes-preserve-unknown-fields: true
93+
additionalProperties:
94+
type: string
95+
format: date-time
9096
previous:
9197
type: object
9298
x-kubernetes-preserve-unknown-fields: true

charts/psc-autoscaler/templates/deployment.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ spec:
105105
{{- end }}
106106
- name: "EXCLUDED_NAMESPACES"
107107
value: "{{ .Values.settings.excludedNamespaces | join "," }}"
108+
- name: KUBE_API_QPS
109+
value: "{{ .Values.settings.kubeApiQPS | default "20" }}"
108110
command:
109111
- "./app"
110112
- "serve"
@@ -247,7 +249,9 @@ spec:
247249
- name: UPDATE_CR_WORKERS_NUM
248250
value: "{{ .Values.settings.updateCRWorkersNum }}"
249251
- name: KUBE_API_QPS
250-
value: "{{ .Values.settings.kubeApiQPS | default "20" }}"
252+
value: "{{ .Values.settings.kubeApiQPS | default "30" }}"
253+
- name: "AUTOMATED_REVISIONS_RETENTION_HOURS"
254+
value: "{{ .Values.settings.automatedRevisionsRetentionHours }}"
251255
command:
252256
- "./app"
253257
- "sync"
@@ -371,6 +375,8 @@ spec:
371375
{{- end }}
372376
- name: "EXCLUDED_NAMESPACES"
373377
value: "{{ .Values.settings.excludedNamespaces | join "," }}"
378+
- name: KUBE_API_QPS
379+
value: "{{ .Values.settings.kubeApiQPS | default "20" }}"
374380
command:
375381
- "./app"
376382
- "evict"

charts/psc-autoscaler/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ revisionHistoryLimit: 10
33
image:
44
repository: public.ecr.aws/perfectscale-io/psc-autoscaler
55
pullPolicy: Always
6-
tag: "v1.0.30"
6+
tag: "v1.0.31"
77
settings:
88
port: 8443
99
env: "prod"
@@ -22,6 +22,7 @@ settings:
2222
noProxy: "" #example: ".cluster.local,.svc.cluster.local,172.20.0.1," the line must end with a coma, 172.20.0.1 it is KUBERNETES_SERVICE_HOST, API SERVICE
2323
excludedNamespaces: []
2424
updateCRWorkersNum: 5
25+
automatedRevisionsRetentionHours: "2h"
2526
cmd:
2627
serve:
2728
resources:

0 commit comments

Comments
 (0)