@@ -501,7 +501,7 @@ test-rust:
501501
502502# TODO: the following two container tasks duplicate work that we otherwise do in the Dockerfile,
503503# but by mostly repeating ourselves, we can reuse earlier Earthly stages to speed up the CI.
504- build-dbsp -manager-container :
504+ build-pipeline -manager-container :
505505 FROM +install-rust
506506 WORKDIR /
507507
@@ -522,7 +522,7 @@ build-dbsp-manager-container:
522522 COPY sql-to-dbsp-compiler/temp /database-stream-processor/sql-to-dbsp-compiler/temp
523523 RUN ./pipeline-manager --bind-address = 0.0.0.0 --api-server-working-directory = /working-dir --compiler-working-directory = /working-dir --runner-working-directory = /working-dir --sql-compiler-home = /database-stream-processor/sql-to-dbsp-compiler --dbsp-override-path = /database-stream-processor --precompile
524524 ENTRYPOINT ["./pipeline-manager" , "--bind-address=0.0.0.0" , "--api-server-working-directory=/working-dir" , "--compiler-working-directory=/working-dir" , "--runner-working-directory=/working-dir" , "--sql-compiler-home=/database-stream-processor/sql-to-dbsp-compiler" , "--dbsp-override-path=/database-stream-processor" ]
525- SAVE IMAGE ghcr.io/feldera/dbsp -manager
525+ SAVE IMAGE ghcr.io/feldera/pipeline -manager
526526
527527# TODO: mirrors the Dockerfile. See note above.
528528build-demo-container :
@@ -545,7 +545,7 @@ test-docker-compose:
545545 COPY deploy/docker-compose.yml .
546546 WITH DOCKER --pull postgres \
547547 --pull docker.redpanda.com/vectorized/redpanda:v23.2.3 \
548- --load ghcr.io/feldera/dbsp -manager= +build-dbsp -manager-container \
548+ --load ghcr.io/feldera/pipeline -manager= +build-pipeline -manager-container \
549549 --load ghcr.io/feldera/demo-container= +build-demo-container
550550 RUN COMPOSE_HTTP_TIMEOUT= 120 SECOPS_DEMO_ARGS= "--prepare-args 200000" RUST_LOG= debug,tokio_postgres= info docker-compose -f docker-compose.yml --profile demo up --force-recreate --exit-code-from demo
551551 END
@@ -556,7 +556,7 @@ integration-test-container:
556556 COPY +test-manager/test_binary .
557557 # Check that the binary does indeed run integration tests
558558 RUN ./test_binary integration_test --list | grep integration_test
559- ENV TEST_DBSP_URL= http://dbsp :8080
559+ ENV TEST_DBSP_URL= http://pipeline-manager :8080
560560 ENTRYPOINT ["./test_binary" , "integration_test::" ]
561561 SAVE IMAGE itest:latest
562562
@@ -566,10 +566,10 @@ integration-tests:
566566 COPY deploy/docker-compose.yml .
567567 COPY deploy/.env .
568568 WITH DOCKER --pull postgres \
569- --load ghcr.io/feldera/dbsp -manager= +build-dbsp -manager-container \
569+ --load ghcr.io/feldera/pipeline -manager= +build-pipeline -manager-container \
570570 --compose docker-compose.yml \
571571 --service db \
572- --service dbsp \
572+ --service pipeline-manager \
573573 --load itest:latest= +integration-test-container
574574 RUN sleep 5 && docker run --env-file .env --network default_default itest:latest
575575 END
0 commit comments