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