From dca2e468d11962c4dc79d9d5c47bca1901d95ce1 Mon Sep 17 00:00:00 2001 From: Tarashish Mishra Date: Tue, 26 Nov 2024 14:13:18 +0530 Subject: [PATCH] define a placeholder value for api host --- helm/zeno/templates/ingress.yaml | 4 ++-- helm/zeno/values.yaml | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/helm/zeno/templates/ingress.yaml b/helm/zeno/templates/ingress.yaml index ebe7620..6281288 100644 --- a/helm/zeno/templates/ingress.yaml +++ b/helm/zeno/templates/ingress.yaml @@ -9,10 +9,10 @@ metadata: spec: # tls: # - hosts: - # - {{ .Values.ingress.host }} + # - {{ .Values.api.host }} # secretName: {{ .Release.Name }}-tls rules: - # - host: {{ .Values.ingress.host }} + # - host: {{ .Values.api.host }} # http: # paths: # - path: / diff --git a/helm/zeno/values.yaml b/helm/zeno/values.yaml index b7846a4..bec8357 100644 --- a/helm/zeno/values.yaml +++ b/helm/zeno/values.yaml @@ -6,3 +6,6 @@ secrets: langfuse: host: langfuse.zeno.ds.io + +api: + host: api.zeno.ds.io