Browse Source

ref: use cdc multiarch image (#38310)

anthony sottile 2 years ago
parent
commit
7f32f7f995
2 changed files with 2 additions and 2 deletions
  1. 1 1
      scripts/backfill_cdc.sh
  2. 1 1
      src/sentry/conf/server.py

+ 1 - 1
scripts/backfill_cdc.sh

@@ -23,7 +23,7 @@ docker run \
 -v /tmp/cdc-snapshots:/tmp/cdc-snapshots \
 --rm \
 --network sentry \
-getsentry/cdc:nightly \
+ghcr.io/getsentry/cdc:latest \
 cdc -c /etc/cdc/configuration.yaml \
 snapshot --snapshot-config /etc/cdc/cdc-snapshot-config.yaml \
 2>&1 | tee /tmp/cdc-snapshots/snapshot.log

+ 1 - 1
src/sentry/conf/server.py

@@ -2074,7 +2074,7 @@ SENTRY_DEVSERVICES = {
     ),
     "cdc": lambda settings, options: (
         {
-            "image": "getsentry/cdc:nightly",
+            "image": "ghcr.io/getsentry/cdc:latest",
             "pull": True,
             "only_if": settings.SENTRY_USE_CDC_DEV,
             "command": ["cdc", "-c", "/etc/cdc/configuration.yaml", "producer"],