mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-18 03:11:24 +00:00
Change temporal.kube_env to append
Signed-off-by: Mustafa Gezen <mustafa@ctrliq.com>
This commit is contained in:
parent
7885a467e9
commit
d171e12eb1
@ -81,7 +81,6 @@ bycdeploy.new({
|
|||||||
name: 'KEYKEEPER_S3_BUCKET',
|
name: 'KEYKEEPER_S3_BUCKET',
|
||||||
value: 'resf-peridot-prod',
|
value: 'resf-peridot-prod',
|
||||||
},
|
},
|
||||||
temporal.kube_env('KEYKEEPER'),
|
|
||||||
$.dsn,
|
$.dsn,
|
||||||
],
|
] + temporal.kube_env('KEYKEEPER'),
|
||||||
})
|
})
|
||||||
|
@ -107,10 +107,6 @@ bycdeploy.new({
|
|||||||
name: 'YUMREPOFS_HTTP_ENDPOINT_OVERRIDE',
|
name: 'YUMREPOFS_HTTP_ENDPOINT_OVERRIDE',
|
||||||
value: 'https://yumrepofs.build.resf.org',
|
value: 'https://yumrepofs.build.resf.org',
|
||||||
},
|
},
|
||||||
if site == 'extarches' then {
|
|
||||||
name: 'PERIDOTEPHEMERAL_TEMPORAL_HOSTPORT',
|
|
||||||
value: 'temporal.corp.build.resf.org:443',
|
|
||||||
} else temporal.kube_env('PERIDOTEPHEMERAL'),
|
|
||||||
if site == 'extarches' then {
|
if site == 'extarches' then {
|
||||||
name: 'PERIDOTEPHEMERAL_PROVISION_ONLY',
|
name: 'PERIDOTEPHEMERAL_PROVISION_ONLY',
|
||||||
value: 'true',
|
value: 'true',
|
||||||
@ -136,7 +132,16 @@ bycdeploy.new({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
$.dsn,
|
$.dsn,
|
||||||
],
|
] + if site == 'extarches' then [
|
||||||
|
{
|
||||||
|
name: 'PERIDOTEPHEMERAL_TEMPORAL_HOSTPORT',
|
||||||
|
value: 'temporal.corp.build.resf.org:443',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'TEMPORAL_NAMESPACE',
|
||||||
|
value: 'default',
|
||||||
|
},
|
||||||
|
] else temporal.kube_env('PERIDOTEPHEMERAL'),
|
||||||
custom_job_items(metadata, extra): [
|
custom_job_items(metadata, extra): [
|
||||||
provisionWorkerRole(metadata),
|
provisionWorkerRole(metadata),
|
||||||
kubernetes.bind_to_role_sa(provisionWorkerRole(metadata), extra.service_account_name)
|
kubernetes.bind_to_role_sa(provisionWorkerRole(metadata), extra.service_account_name)
|
||||||
|
@ -50,7 +50,6 @@ bycdeploy.new({
|
|||||||
name: 'PERIDOT_PRODUCTION',
|
name: 'PERIDOT_PRODUCTION',
|
||||||
value: if kubernetes.dev() then 'false' else 'true',
|
value: if kubernetes.dev() then 'false' else 'true',
|
||||||
},
|
},
|
||||||
temporal.kube_env('PERIDOT'),
|
|
||||||
$.dsn,
|
$.dsn,
|
||||||
],
|
] + temporal.kube_env('PERIDOT'),
|
||||||
})
|
})
|
||||||
|
@ -68,7 +68,6 @@ bycdeploy.new({
|
|||||||
name: 'YUMREPOFSUPDATER_S3_BUCKET',
|
name: 'YUMREPOFSUPDATER_S3_BUCKET',
|
||||||
value: 'resf-peridot-prod',
|
value: 'resf-peridot-prod',
|
||||||
},
|
},
|
||||||
temporal.kube_env('YUMREPOFSUPDATER'),
|
|
||||||
$.dsn,
|
$.dsn,
|
||||||
],
|
] + temporal.kube_env('YUMREPOFSUPDATER'),
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user