From cecc3bd90f459a49a11a0ff2c715dad1b0f34791 Mon Sep 17 00:00:00 2001 From: AlessiaFrunza Date: Thu, 5 Mar 2026 18:09:47 +0100 Subject: [PATCH] Added custom values for Kubernetes deployment with HPA --- helm/custom-values.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 helm/custom-values.yaml diff --git a/helm/custom-values.yaml b/helm/custom-values.yaml new file mode 100644 index 0000000..e87b825 --- /dev/null +++ b/helm/custom-values.yaml @@ -0,0 +1,28 @@ +replicaCount: 1 + +image: + repository: fastapi-gitops-starter + tag: "v0.4" + pullPolicy: Never + +imagePullSecrets: [] + +registry: + createImagePullSecret: false + +ingress: + enabled: true + hosts: + - host: minikube.test + paths: + - path: /GitOps-Starter + pathType: Prefix + +app: + rootPath: "/GitOps-Starter" + +autoscaling: + enabled: true + minReplicas: 1 + maxReplicas: 10 + targetCPUUtilizationPercentage: 10