diff --git a/_infra/helm/sample/Chart.yaml b/_infra/helm/sample/Chart.yaml index b9bc26aa..ecd0cb5e 100644 --- a/_infra/helm/sample/Chart.yaml +++ b/_infra/helm/sample/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 1.1.1 +version: 1.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 11.1.3 +appVersion: 11.1.4 diff --git a/_infra/helm/sample/templates/hpa.yaml b/_infra/helm/sample/templates/hpa.yaml index a9d2610c..0f540dc7 100644 --- a/_infra/helm/sample/templates/hpa.yaml +++ b/_infra/helm/sample/templates/hpa.yaml @@ -8,8 +8,8 @@ spec: apiVersion: apps/v1 kind: Deployment name: {{ .Chart.Name }} - minReplicas: 1 - maxReplicas: {{ .Values.replicas }} + minReplicas: {{ .Values.replicas }} + maxReplicas: {{ .Values.maxReplicas }} metrics: - type: Resource resource: diff --git a/_infra/helm/sample/values.yaml b/_infra/helm/sample/values.yaml index 07ca140e..47583f7c 100644 --- a/_infra/helm/sample/values.yaml +++ b/_infra/helm/sample/values.yaml @@ -47,6 +47,7 @@ scaleAt: memoryPercentage: 300 cpuPercentage: 200 replicas: 1 +maxReplicas: 1 rollingUpdate: maxSurge: 1 maxUnavailable: 1