Skip to content

Commit 3c3391f

Browse files
committed
Update helm chart default values
1 parent d216d15 commit 3c3391f

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

charts/kminion/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ version: 0.12.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "v2.2.5"
24+
appVersion: "v2.2.14"

charts/kminion/templates/hpa.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.autoscaling.enabled }}
2-
apiVersion: {{ ternary "autoscaling/v2" "autoscaling/v2beta1" (.Capabilities.APIVersions.Has "autoscaling/v2") }}
2+
apiVersion: autoscaling/v2
33
kind: HorizontalPodAutoscaler
44
metadata:
55
name: {{ include "kminion.fullname" . }}
@@ -18,24 +18,16 @@ spec:
1818
- type: Resource
1919
resource:
2020
name: cpu
21-
{{- if .Capabilities.APIVersions.Has "autoscaling/v2" }}
2221
target:
2322
type: Utilization
2423
averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
25-
{{ else }}
26-
targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
27-
{{- end }}
2824
{{- end }}
2925
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
3026
- type: Resource
3127
resource:
3228
name: memory
33-
{{- if .Capabilities.APIVersions.Has "autoscaling/v2" }}
3429
target:
3530
type: Utilization
3631
averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
37-
{{ else }}
38-
targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
39-
{{- end }}
4032
{{- end }}
4133
{{- end }}

charts/kminion/templates/poddisruptionbudget.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.podDisruptionBudget }}
2-
apiVersion: {{ include "kminion.podDisruptionBudget.apiVersion" . }}
2+
apiVersion: policy/v1
33
kind: PodDisruptionBudget
44
metadata:
55
name: {{ template "kminion.fullname" . }}

charts/kminion/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ image:
88
repository: ghcr.io/adobe/kminion
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
11-
tag: ""
11+
tag: "2.2.14-adobe-20250913"
1212

1313
imagePullSecrets: []
1414
nameOverride: ""
@@ -126,11 +126,11 @@ affinity: {}
126126
customLabels: {}
127127

128128
serviceMonitor:
129-
create: false
129+
create: true
130130
additionalLabels: {}
131131
honorLabels: false
132-
scrapeTimeout: 10s
133-
interval: 15s
132+
scrapeTimeout: 29s
133+
interval: 30s
134134
relabelings: []
135135
# - sourceLabels: [__meta_kubernetes_pod_label_my_label]
136136
# separator: ;

0 commit comments

Comments
 (0)