Skip to content

Commit d2e44ed

Browse files
author
github-actions
committed
Update perfectscale-autoscaler chart with new package version v1.0.14
1 parent 47bd88c commit d2e44ed

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

charts/psc-autoscaler/templates/admission.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ apiVersion: admissionregistration.k8s.io/v1
2323
kind: MutatingWebhookConfiguration
2424
metadata:
2525
name: {{ include "psc-autoscaler.fullname" . }}
26+
{{- with .Values.admission.annotations }}
27+
annotations:
28+
{{- toYaml . | nindent 4 }}
29+
{{- end }}
2630
webhooks:
2731
- name: pods.perfectscale.io
2832
{{- if and (.Values.settings.excludedNamespaces) (ne (.Values.settings.excludedNamespaces | toString) "[]") }}
@@ -58,6 +62,10 @@ apiVersion: admissionregistration.k8s.io/v1
5862
kind: ValidatingWebhookConfiguration
5963
metadata:
6064
name: {{ include "psc-autoscaler.fullname" . }}
65+
{{- with .Values.admission.annotations }}
66+
annotations:
67+
{{- toYaml . | nindent 4 }}
68+
{{- end }}
6169
webhooks:
6270
- name: configs.perfectscale.io
6371
rules:

charts/psc-autoscaler/values.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 3
22
image:
33
repository: public.ecr.aws/perfectscale-io/psc-autoscaler
44
pullPolicy: Always
5-
tag: "v1.0.13"
5+
tag: "v1.0.14"
66
settings:
77
port: 8443
88
env: "prod"
@@ -104,6 +104,11 @@ admission:
104104
# caCert: ""
105105
# tlsCert: ""
106106
# tlsKey: ""
107+
# Annotations to add to the admission webhook
108+
annotations: {}
109+
# Admission Enforcer on AKS excludes kube-system and AKS internal namespaces from being processed by the webhook.
110+
# To disable this behavior, provide the following annotation:
111+
# admissions.enforcer/disabled: "true"
107112
integrationTests:
108113
enabled: true
109114
image:

0 commit comments

Comments
 (0)