From a720f18bbe89a0e12a602f9b3871eada4a2b862b Mon Sep 17 00:00:00 2001 From: mchen-sentry Date: Wed, 15 Apr 2026 12:40:14 -0700 Subject: [PATCH] ref(gocd): bump gocd-jsonnet to v3.0.0 for grouped pipedream Bumps gocd-jsonnet from v2.19.0 to v3.0.0 which changes the pipedream model from one pipeline per region to one pipeline per group. The four customer region pipelines (customer-1, -2, -4, -7) collapse into a single deploy-snuba-{py,rs}-st pipeline with parallel jobs. Also updates PIPELINE_FIRST_STEP from deploy-snuba-{py,rs}-s4s (no longer exists) to deploy-snuba-{py,rs}-s4s2 (the first group pipeline). Ref: getsentry/gocd-jsonnet#92 --- gocd/templates/jsonnetfile.json | 2 +- gocd/templates/jsonnetfile.lock.json | 4 ++-- gocd/templates/pipelines/snuba-py.libsonnet | 2 +- gocd/templates/pipelines/snuba-rs.libsonnet | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gocd/templates/jsonnetfile.json b/gocd/templates/jsonnetfile.json index 2270013c6b7..d1833c4148e 100644 --- a/gocd/templates/jsonnetfile.json +++ b/gocd/templates/jsonnetfile.json @@ -8,7 +8,7 @@ "subdir": "libs" } }, - "version": "v2.19.0" + "version": "v3.0.0" } ], "legacyImports": true diff --git a/gocd/templates/jsonnetfile.lock.json b/gocd/templates/jsonnetfile.lock.json index 5b9146f3e71..c01259b3132 100644 --- a/gocd/templates/jsonnetfile.lock.json +++ b/gocd/templates/jsonnetfile.lock.json @@ -8,8 +8,8 @@ "subdir": "libs" } }, - "version": "56cc4d91cbaac4569b37b4911998b48c2f9c2ac4", - "sum": "J0D//go/146qfReWFTTL5xWWCVlkTjqhnALYPH4Z9rE=" + "version": "3465d94bb68e41c24d93a80d0b3f0ab8168d26c6", + "sum": "SbALpMwOdnmqi5w6cJKPOWDp3gcuafqk7JCninnrrLA=" } ], "legacyImports": false diff --git a/gocd/templates/pipelines/snuba-py.libsonnet b/gocd/templates/pipelines/snuba-py.libsonnet index 16d4c505bc7..89d159d5343 100644 --- a/gocd/templates/pipelines/snuba-py.libsonnet +++ b/gocd/templates/pipelines/snuba-py.libsonnet @@ -195,7 +195,7 @@ function(region) { checks: { elastic_profile_id: 'snuba', environment_variables: { - PIPELINE_FIRST_STEP: 'deploy-snuba-py-s4s', + PIPELINE_FIRST_STEP: 'deploy-snuba-py-s4s2', }, tasks: [ gocdtasks.script(importstr '../bash/check-github.sh'), diff --git a/gocd/templates/pipelines/snuba-rs.libsonnet b/gocd/templates/pipelines/snuba-rs.libsonnet index af4badeb54a..87f71413630 100644 --- a/gocd/templates/pipelines/snuba-rs.libsonnet +++ b/gocd/templates/pipelines/snuba-rs.libsonnet @@ -177,7 +177,7 @@ function(region) { checks: { elastic_profile_id: 'snuba', environment_variables: { - PIPELINE_FIRST_STEP: 'deploy-snuba-rs-s4s', + PIPELINE_FIRST_STEP: 'deploy-snuba-rs-s4s2', }, tasks: [ gocdtasks.script(importstr '../bash/check-github.sh'),