mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-14 01:41:23 +00:00
ccd5fe7069
Signed-off-by: Mustafa Gezen <mustafa@ctrliq.com>
16 lines
461 B
Plaintext
16 lines
461 B
Plaintext
local utils = import 'ci/utils.jsonnet';
|
|
|
|
{
|
|
hostport: if utils.local_image then 'temporal-frontend.default.svc.cluster.local:7233' else 'workflow-temporal-frontend.workflow.svc.cluster.local:7233',
|
|
kube_env(prefix): [
|
|
{
|
|
name: '%s_TEMPORAL_HOSTPORT' % prefix,
|
|
value: $.hostport,
|
|
},
|
|
{
|
|
name: 'TEMPORAL_NAMESPACE',
|
|
value: if utils.helm_mode then '{{ .Values.temporalNamespace | default !"!" }}' else 'default',
|
|
},
|
|
],
|
|
}
|