mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-18 08:58:30 +00:00
Merge pull request #20 from mstg/fix-default-temporal-ns
This commit is contained in:
commit
7885a467e9
@ -2,8 +2,14 @@ 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',
|
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): {
|
kube_env(prefix): [
|
||||||
name: '%s_TEMPORAL_HOSTPORT' % prefix,
|
{
|
||||||
value: $.hostport,
|
name: '%s_TEMPORAL_HOSTPORT' % prefix,
|
||||||
}
|
value: $.hostport,
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name: 'TEMPORAL_NAMESPACE',
|
||||||
|
value: if utils.helm_mode then '{{ .Values.temporalNamespace | default !"!" }}' else 'default',
|
||||||
|
},
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
@ -7,4 +7,5 @@ local localImage = if localEnvironment == "1" then true else false;
|
|||||||
{
|
{
|
||||||
local_image: localImage,
|
local_image: localImage,
|
||||||
docker_hub_image(name): "%s/%s" % [ociRegistryDocker, name],
|
docker_hub_image(name): "%s/%s" % [ociRegistryDocker, name],
|
||||||
|
helm_mode: false,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user