2022-07-07 20:11:50 +00:00
|
|
|
local utils = import 'ci/utils.jsonnet';
|
|
|
|
|
|
|
|
{
|
2022-10-31 15:38:32 +00:00
|
|
|
hostport: if utils.local_image then 'temporal-frontend.default.svc.cluster.local:7233'
|
|
|
|
else if utils.helm_mode then '{{ .Values.temporalHostPort }}'
|
|
|
|
else 'workflow-temporal-frontend.workflow.svc.cluster.local:7233',
|
2022-07-29 22:34:51 +00:00
|
|
|
kube_env(prefix): [
|
|
|
|
{
|
|
|
|
name: '%s_TEMPORAL_HOSTPORT' % prefix,
|
|
|
|
value: $.hostport,
|
2022-07-29 23:00:41 +00:00
|
|
|
},
|
2022-07-29 22:34:51 +00:00
|
|
|
{
|
|
|
|
name: 'TEMPORAL_NAMESPACE',
|
|
|
|
value: if utils.helm_mode then '{{ .Values.temporalNamespace | default !"!" }}' else 'default',
|
|
|
|
},
|
|
|
|
],
|
2022-07-07 20:11:50 +00:00
|
|
|
}
|