Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/temporal/templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ spec:
imagePullPolicy: {{ .Values.web.image.pullPolicy }}
env:
- name: TEMPORAL_ADDRESS
{{- if and .Values.web.useInternalFrontend (index $.Values.server "internal-frontend").enabled }}
value: "{{ include "temporal.fullname" $ }}-internal-frontend.{{ .Release.Namespace }}.svc:{{ (index $.Values.server "internal-frontend").service.port }}"
{{- else }}
value: "{{ include "temporal.fullname" $ }}-frontend.{{ .Release.Namespace }}.svc:{{ .Values.server.frontend.service.port }}"
{{- end }}
{{- if .Values.web.additionalEnv }}
{{- toYaml .Values.web.additionalEnv | nindent 12 }}
{{- end }}
Expand Down
6 changes: 6 additions & 0 deletions charts/temporal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,12 @@ web:
affinity: {}
additionalVolumes: []
additionalVolumeMounts: []
# When enabled, the Web UI connects to internal-frontend instead of frontend.
# This allows the Web UI to bypass server-side authorization, since internal-frontend
# is not subject to the authorizer. Requires server.internal-frontend.enabled to be true.
# If you need authenticated Web UI access (e.g., via SSO/OIDC), leave this as false
# and configure TEMPORAL_AUTH_* environment variables in additionalEnv instead.
useInternalFrontend: false
# Adjust Web UI config with environment variables:
# https://docs.temporal.io/references/web-ui-environment-variables
additionalEnv: []
Expand Down