Skip to content

Commit

Permalink
Zeno ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
sunu committed Nov 26, 2024
1 parent b194eb9 commit 6804df9
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
34 changes: 34 additions & 0 deletions helm/zeno/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ .Release.Name }}-ingress
annotations:
kubernetes.io/ingress.class: nginx
# nginx.ingress.kubernetes.io/ssl-redirect: "true"
# cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
# tls:
# - hosts:
# - {{ .Values.ingress.host }}
# secretName: {{ .Release.Name }}-tls
rules:
# - host: {{ .Values.ingress.host }}
# http:
# paths:
# - path: /
# pathType: Prefix
# backend:
# service:
# name: {{ .Release.Name }}-service
# port:
# number: 80
- host: {{ .Values.langfuse.host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: langfuse
port:
number: 3000
5 changes: 4 additions & 1 deletion helm/zeno/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ secrets:
langfuse:
INIT_USER_PASSWORD:
INIT_PROJECT_SECRET_KEY:
INIT_PROJECT_PUBLIC_KEY:
INIT_PROJECT_PUBLIC_KEY:

langfuse:
host: langfuse.zeno.ds.io

0 comments on commit 6804df9

Please sign in to comment.