Skip to content

Commit 0f830fa

Browse files
authored
feat: Enable deploys for US & DE regions (#396)
* feat: Enable deploys for US region for control silo. The control silo brokers will live in the US region, so we'll need deploys for US region enabled. * Enable deploys for de as well.
1 parent 8df1240 commit 0f830fa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

gocd/templates/pipelines/taskbroker.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ local checks_stage = {
2020
};
2121

2222
local deploy_canary_stage(region) =
23-
if region == 'us' then
23+
if region == 'us' || region == 'de' then
2424
[
2525
{
2626
'deploy-canary': {

gocd/templates/taskbroker.jsonnet

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ local pipedream_config = {
1919
stage: 'deploy-primary',
2020
elastic_profile_id: 'taskbroker',
2121
},
22-
exclude_regions: ['de', 'us'],
2322
};
2423

2524
pipedream.render(pipedream_config, taskbroker)

0 commit comments

Comments
 (0)