From 6af7150eb68443b2ce314457b6a35f86e31b0456 Mon Sep 17 00:00:00 2001 From: Tuan-Dat Tran Date: Mon, 23 Feb 2026 23:26:38 +0100 Subject: [PATCH] feat(helm): add default values configuration --- helm/cv-app/values.yaml | 56 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 helm/cv-app/values.yaml diff --git a/helm/cv-app/values.yaml b/helm/cv-app/values.yaml new file mode 100644 index 0000000..eb6627a --- /dev/null +++ b/helm/cv-app/values.yaml @@ -0,0 +1,56 @@ +frontend: + replicaCount: 1 + image: + repository: username/cv-app + tag: latest + pullPolicy: IfNotPresent + resources: {} + +backend: + replicaCount: 1 + image: + repository: username/cv-app-backend + tag: latest + pullPolicy: IfNotPresent + auth: + mode: simple + keycloak: + url: "" + realm: "" + clientId: "" + resources: {} + +persistence: + enabled: true + size: 1Gi + storageClass: "" + +ingress: + enabled: true + className: "" + annotations: {} + hosts: + - host: cv.local + paths: + - path: / + service: frontend + - path: /api + service: backend + tls: [] + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + create: true + annotations: {} + name: "" + +podAnnotations: {} +podSecurityContext: {} +securityContext: {} + +nodeSelector: {} +tolerations: [] +affinity: {}