From 0089c18ba478f899a0792071d00feff499822447 Mon Sep 17 00:00:00 2001 From: "vitor.cassiano" Date: Tue, 28 May 2024 23:19:34 -0300 Subject: [PATCH] chore: Add test for hpa values --- charts/argo-rollouts/ci/hpa-values.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 charts/argo-rollouts/ci/hpa-values.yaml diff --git a/charts/argo-rollouts/ci/hpa-values.yaml b/charts/argo-rollouts/ci/hpa-values.yaml new file mode 100644 index 00000000..800c3773 --- /dev/null +++ b/charts/argo-rollouts/ci/hpa-values.yaml @@ -0,0 +1,23 @@ +# Test with dashboard enabled +# Do not deploy the CRDs as they are already present from the previous test +installCRDs: false + +autoscaling: + enabled: true + minReplicas: 1 + maxReplicas: 5 + targetCPUUtilizationPercentage: 70 + targetMemoryUtilizationPercentage: 70 + behavior: + scaleDown: + stabilizationWindowSeconds: 300 + policies: + - type: Pods + value: 1 + periodSeconds: 180 + scaleUp: + stabilizationWindowSeconds: 300 + policies: + - type: Pods + value: 2 + periodSeconds: 60 \ No newline at end of file