Commit da8a66b5 authored by Thong Kuah's avatar Thong Kuah
Browse files

Merge branch 'fix/hpa-scaleTargetRef-apiVersion' into 'master'

fix: match hpa scaleTargetRef apiVersion with deployment

See merge request gitlab-org/cluster-integration/auto-deploy-image!146
parents 932d77f3 fb401fd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
apiVersion: v1
description: GitLab's Auto-deploy Helm Chart
name: auto-deploy-app
version: 2.0.0
version: 2.0.1
icon: https://gitlab.com/gitlab-com/gitlab-artwork/raw/master/logo/logo-square.png
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ spec:
  scaleTargetRef:
    kind: Deployment
    name: {{ template "appname" . }}
    apiVersion: apps/v1beta1
    apiVersion: apps/v1
  minReplicas: {{ .Values.hpa.minReplicas }}
  maxReplicas: {{ .Values.hpa.maxReplicas }}
  targetCPUUtilizationPercentage: {{ .Values.hpa.targetCPUUtilizationPercentage }}
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ import (
)

const (
	chartName     = "auto-deploy-app-2.0.0"
	chartName     = "auto-deploy-app-2.0.1"
	helmChartPath = ".."
)