Skip to content

Commit

Permalink
query-replayer: move gocd env vars to top level for changes (#5622)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanda committed Mar 6, 2024
1 parent 0a1f79b commit 657682f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gocd/templates/clickhouse-query-replayer.jsonnet
Expand Up @@ -8,8 +8,6 @@ local generate_replay_job(component) =
environment_variables: {
SENTRY_REGION: 's4s',
SNUBA_SERVICE_NAME: 'query-replayer-gocd',
GOOGLE_CLOUD_PROJECT: 'search-and-storage',
REPLAYER_ARGS: 'your args here (e.g --gcs-bucket abcd)',
},
elastic_profile_id: pipeline_group,
tasks: [
Expand All @@ -18,6 +16,10 @@ local generate_replay_job(component) =
};

local pipeline = {
environment_variables: {
GOOGLE_CLOUD_PROJECT: 'search-and-storage',
REPLAYER_ARGS: 'your args here (e.g --gcs-bucket abcd)',
},
group: pipeline_group,
display_order: 100, // Ensure it's last pipeline in UI
lock_behavior: 'unlockWhenFinished',
Expand Down

0 comments on commit 657682f

Please sign in to comment.