Skip to content

Commit 6c92d49

Browse files
authored
Merge pull request #16 from achetronic/fix/adapt-gitops-tools
2 parents 7125b97 + b335f70 commit 6c92d49

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

charts/cluster-overprovisioner/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cluster-overprovisioner
33
description: Helm chart, that enables scheduled scaling of a target resource, intended to be add overprovisioning to an autoscaling k8s cluster.
44
type: application
5-
version: 0.6.0
5+
version: 0.6.1
66
appVersion: "1.16.0"
77
keywords:
88
- cluster-autoscaler

charts/cluster-overprovisioner/templates/op-deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ metadata:
66
labels:
77
{{- include "cluster-overprovisioner.op.labels" . | nindent 4 }}
88
spec:
9-
replicas: 1
9+
{{- if .Values.op.replicas }}
10+
replicas: {{ .Values.op.replicas | int }}
11+
{{- end }}
1012
selector:
1113
matchLabels:
1214
{{- include "cluster-overprovisioner.op.selectorLabels" . | nindent 6 }}

charts/cluster-overprovisioner/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ op:
7474
pullPolicy: IfNotPresent
7575
tag: 3.2
7676

77+
replicas: null
78+
7779
imagePullSecrets: []
7880
nameOverride: ""
7981
fullnameOverride: ""

0 commit comments

Comments
 (0)