Skip to content

Commit acc89fa

Browse files
committed
feat(gocd): add grouped pipedream v3 snuba pipeline names
Pipedream v3 collapses deploy-snuba-{py,rs}-customer-{1,2,4,7} into deploy-snuba-{py,rs}-st. Add the new st pipeline names to Slack feed filters and Datadog region mappings. Keep old customer-* names for backward compat during staged rollout. Also remove dead deploy-snuba-{py,rs}-s4s entries (s4s test region was removed in gocd-jsonnet). Ref: getsentry/gocd-jsonnet#92
1 parent f2cf3b1 commit acc89fa

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/brain/gocd/gocdDataDog/deployDatadogEvents.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ export class DeployDatadogEvents {
229229
s4s: 'st-sentry4sentry',
230230
us: 'us',
231231
de: 'de',
232+
st: 'st',
232233
'customer-1': 'st-goldmansachs',
233234
'customer-2': 'st-geico',
234235
'customer-3': 'st-zendesk-eu',

src/brain/gocd/gocdSlackFeeds/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,17 @@ const SDKS_PIPELINE_FILTER = ['deploy-release-registry'];
5757
const SNS_SAAS_PIPELINE_FILTER = [
5858
'deploy-snuba-py',
5959
'rollback-snuba-py',
60-
'deploy-snuba-py-s4s',
6160
'deploy-snuba-py-us',
6261
'deploy-snuba-rs',
6362
'rollback-snuba-rs',
64-
'deploy-snuba-rs-s4s',
6563
'deploy-snuba-rs-us',
6664
];
6765

6866
const SNS_ST_PIPELINE_FILTER = [
67+
// Grouped pipedream v3 names
68+
'deploy-snuba-py-st',
69+
'deploy-snuba-rs-st',
70+
// Per-region names (v2, kept for backward compat during staged rollout)
6971
'deploy-snuba-py-customer-1',
7072
'deploy-snuba-py-customer-2',
7173
'deploy-snuba-py-customer-4',

0 commit comments

Comments
 (0)