Skip to content
This repository was archived by the owner on Mar 25, 2026. It is now read-only.

Commit c23af5b

Browse files
authored
Merge pull request #19 from Synthesia-Technologies/0.48.12
cast port to int
2 parents bac8b8d + 3888bb6 commit c23af5b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

charts/temporal/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies:
3939
type: application
4040
# This is the chart version. This version number should be incremented each time you make changes
4141
# to the chart and its templates, including the app version.
42-
version: 0.48.11
42+
version: 0.48.12
4343
# This is the version number of the application being deployed. This version number should be
4444
# incremented each time you make changes to the application.
4545
appVersion: 1.25.1

charts/temporal/templates/admintools-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ spec:
3232
protocol: TCP
3333
env:
3434
# TEMPORAL_CLI_ADDRESS is deprecated, use TEMPORAL_ADDRESS instead
35-
{{- $serviceAddressInternal := printf "%s-frontend-internal:%d" (include "temporal.fullname" $) .Values.server.frontend.internal.service.port -}}
36-
{{- $serviceAddress := printf "%s-frontend:%d" (include "temporal.fullname" $) .Values.server.frontend.service.port -}}
35+
{{- $serviceAddressInternal := printf "%s-frontend-internal:%d" (include "temporal.fullname" $) (.Values.server.frontend.internal.service.port | int) -}}
36+
{{- $serviceAddress := printf "%s-frontend:%d" (include "temporal.fullname" $) (.Values.server.frontend.service.port | int) -}}
3737
{{- if $.Values.server.frontend.internal.enabled }}
3838
- name: TEMPORAL_CLI_ADDRESS
3939
value: {{ $serviceAddressInternal }}

0 commit comments

Comments
 (0)