temporal: Expose grpc ingress on ekman

This commit is contained in:
2026-06-20 09:45:45 +02:00
parent 7e55f96523
commit f1e7195a6a
3 changed files with 34 additions and 0 deletions
+1
View File
@@ -2,4 +2,5 @@ temporal:
enabled: true
autosync: false
ingress: true
grpcIngress: true
workerController: true
+1
View File
@@ -2,5 +2,6 @@ temporal:
enabled: false
autosync: false
ingress: false
grpcIngress: false
workerController: false
cluster: {{ requiredEnv "ARGOCD_ENV_CLUSTER_NAME" }}
@@ -0,0 +1,32 @@
{{- if .Values.temporal.grpcIngress }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: temporal-frontend-grpc
namespace: temporal
annotations:
cert-manager.io/cluster-issuer: {{ .Values.clusterConfig.ingress_clusterissuer }}
nginx.ingress.kubernetes.io/backend-protocol: GRPC
nginx.ingress.kubernetes.io/ssl-redirect: "true"
oceanbox.io/expose: internal
labels:
app.kubernetes.io/name: temporal
app.kubernetes.io/component: frontend
spec:
ingressClassName: nginx
rules:
- host: temporal-grpc.{{ .Values.clusterConfig.domain }}
http:
paths:
- backend:
service:
name: temporal-frontend
port:
number: 7233
path: /
pathType: Prefix
tls:
- hosts:
- temporal-grpc.{{ .Values.clusterConfig.domain }}
secretName: temporal-grpc.{{ .Values.clusterConfig.domain }}-tls
{{- end }}