Skip to content

Commit dd3fc37

Browse files
authored
chore: drop pedalboard plugins now living in pedalboard repo + k8s (#14398)
1 parent 669bf5b commit dd3fc37

66 files changed

Lines changed: 28321 additions & 44092 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

buf.gen.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,3 @@ plugins:
66
out: packages/discovery-provider/src/tasks/core/audiusd_gen
77
- remote: buf.build/protocolbuffers/python:v28.3
88
out: packages/discovery-provider/src/tasks/core/audiusd_gen
9-
- remote: buf.build/bufbuild/es:v2.2.3
10-
opt: target=ts
11-
out: packages/discovery-provider/plugins/pedalboard/gen/audiusd-sdk

dev-tools/audius-compose

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ audius-creator-node-1 audius-creator-node-2 audius-creator-node-3 \
2020
audius-identity-service-1 \
2121
audius-solana-test-validator-1 \
2222
audius-eth-ganache-1 \
23-
audius-pedalboard \
2423
audius-anti-abuse-oracle-1 \
2524
audius-discovery-provider-redis-1 \
2625
audius-api \
@@ -344,12 +343,6 @@ def load_env(protocol_dir, service, environment):
344343
is_flag=True,
345344
help="Bring up discovery provider notifications container",
346345
)
347-
@click.option(
348-
"-p",
349-
"--pedalboard",
350-
is_flag=True,
351-
help="Bring up the pedalboard containers",
352-
)
353346
@click.option("-a", "--args", type=str, multiple=True)
354347
@click.option(
355348
"--prod",
@@ -367,7 +360,6 @@ def up(
367360
block_explorer,
368361
anti_abuse_oracle,
369362
notifs,
370-
pedalboard,
371363
args,
372364
prod,
373365
services,
@@ -384,7 +376,6 @@ def up(
384376
*(["--profile=block-explorer"] if block_explorer else []),
385377
*(["--profile=elasticsearch"] if elasticsearch_replicas else []),
386378
*(["--profile=notifications"] if notifs else []),
387-
*(["--profile=pedalboard"] if pedalboard else []),
388379
"--profile=storage",
389380
"--profile=libs",
390381
"--profile=solana",

dev-tools/compose/Dockerfile.notifications-test

Lines changed: 0 additions & 8 deletions
This file was deleted.

dev-tools/compose/docker-compose.pedalboard.dev.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

dev-tools/compose/docker-compose.pedalboard.prod.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

dev-tools/compose/docker-compose.test.yml

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -384,37 +384,6 @@ services:
384384
- tests
385385
- identity
386386

387-
# Pedalboard @pedalboard/notifications (Jest). Mount PEDALBOARD_ROOT or default ../pedalboard next to apps repo.
388-
test-notifications:
389-
user: ${DOCKER_UID:-root}:${DOCKER_GID:-root}
390-
build:
391-
context: .
392-
dockerfile: Dockerfile.notifications-test
393-
image: audius-test-notifications:local
394-
working_dir: /pedalboard
395-
volumes:
396-
- ${PEDALBOARD_ROOT:-${PROJECT_ROOT}/../pedalboard}:/pedalboard
397-
environment:
398-
DN_DB_URL: 'postgresql://postgres:postgres@discovery-provider-db:5432/discovery_provider'
399-
IDENTITY_DB_URL: 'postgresql://postgres:postgres@identity-service-db:5432/identity_service'
400-
AUDIUS_REDIS_URL: 'redis://discovery-provider-redis:6379/0'
401-
entrypoint: >-
402-
sh -c '[ ! "$$1" = "test" ] && sleep inf ||
403-
(shift; set -e; npm ci --no-audit --fund=false; cd apps/notifications; exec npm test -- "$$@")' -
404-
command: ''
405-
depends_on:
406-
test-discovery-provider-migrations:
407-
condition: service_completed_successfully
408-
test-identity-service-migrations:
409-
condition: service_completed_successfully
410-
discovery-provider-redis:
411-
condition: service_healthy
412-
logging: *default-logging
413-
deploy:
414-
mode: global
415-
profiles:
416-
- tests
417-
418387
volumes:
419388
poa-contracts-abis:
420389
eth-contracts-abis:

dev-tools/compose/docker-compose.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ x-common: &common
2020
- "audius-identity-service-1:host-gateway"
2121
- "audius-solana-test-validator-1:host-gateway"
2222
- "audius-eth-ganache-1:host-gateway"
23-
- "audius-pedalboard:host-gateway"
2423
- "audius-api:host-gateway"
2524
- "audius-api-elasticsearch:host-gateway"
2625
- "node1.oap.devnet:host-gateway"
@@ -165,25 +164,6 @@ services:
165164
service: healthz
166165
<<: *common
167166

168-
# Pedalboard (plugins)
169-
staking:
170-
extends:
171-
file: docker-compose.pedalboard.${DOCKERCOMPOSE_ENV_TYPE:-dev}.yml
172-
service: staking
173-
<<: *common
174-
175-
anti-abuse:
176-
extends:
177-
file: docker-compose.pedalboard.${DOCKERCOMPOSE_ENV_TYPE:-dev}.yml
178-
service: anti-abuse
179-
<<: *common
180-
181-
archiver:
182-
extends:
183-
file: docker-compose.pedalboard.${DOCKERCOMPOSE_ENV_TYPE:-dev}.yml
184-
service: archiver
185-
<<: *common
186-
187167
# Blockchain
188168

189169
eth-ganache:

dev-tools/environment/api.env

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ runMigrations=true
44
delegatePrivateKey=21118f9a6de181061a2abd549511105adb4877cf9026f271092e6813b7cf58ab
55
readDbUrl=postgresql://postgres:postgres@db:5432/discovery_provider_1
66
writeDbUrl=postgresql://postgres:postgres@db:5432/discovery_provider_1
7-
antiAbuseOracle=http://audius-anti-abuse-oracle-1:8000
87
antiAbuseOracleAddress=0xF0D5BC18421fa04D0a2A2ef540ba5A9f04014BE3
98
solanaFeePayerKeys=4Qs6go7q8pnEwoxbLP3PD1nvZif5mnfA9kPAxgsGAqX1cDYMFMjEQVyTLEsq8HP8K5qePAjsfj1cyGPhgdt582Gv
109
solanaRpcProviders=http://solana-test-validator:8899

0 commit comments

Comments
 (0)