From 21439761c3cc5555fa8017c63bf385a91123e24d Mon Sep 17 00:00:00 2001 From: jon4hz Date: Wed, 28 Dec 2022 15:16:36 +0100 Subject: [PATCH] fix: allow frontend service type overrides --- helm-charts/infisical/templates/frontend-deployment.yaml | 1 + helm-charts/infisical/values.yaml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/helm-charts/infisical/templates/frontend-deployment.yaml b/helm-charts/infisical/templates/frontend-deployment.yaml index da9b4d828f..99d94f9b98 100644 --- a/helm-charts/infisical/templates/frontend-deployment.yaml +++ b/helm-charts/infisical/templates/frontend-deployment.yaml @@ -41,6 +41,7 @@ kind: Service metadata: name: infisical-frontend-service spec: + type: {{ .Values.frontend.service.type }} selector: app: frontend ports: diff --git a/helm-charts/infisical/values.yaml b/helm-charts/infisical/values.yaml index 0633c21270..ba4457d50c 100644 --- a/helm-charts/infisical/values.yaml +++ b/helm-charts/infisical/values.yaml @@ -10,7 +10,8 @@ frontend: pullPolicy: IfNotPresent tag: "latest" # kubeSecretRef: some-kube-secret-name - + service: + type: ClusterIP backend: replicaCount: 1