* sweep all scheduler application code and new-scheduler conditional logic * remove airbyte-scheduler from deployments and docs * format * remove 'v2' from github actions * add back scheduler in delete deployment command * remove scheduler parameters from helm chart values * add back job cleaner + test and add comment * remove now-unused env vars from code and docs * format * remove feature flags from web backend connection handler as it is no longer needed * remove feature flags from config api as it is now longer needed * remove feature flags input from config api test * format + shorter url * remove scheduler parameters from helm chart readme
67 lines
1.7 KiB
YAML
67 lines
1.7 KiB
YAML
version: "3.7"
|
|
|
|
services:
|
|
init:
|
|
image: airbyte/init:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-config/init
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
bootloader:
|
|
image: airbyte/bootloader:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-bootloader
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
db:
|
|
image: airbyte/db:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-db/db-lib
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
worker:
|
|
image: airbyte/worker:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-workers
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
server:
|
|
image: airbyte/server:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-server
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
webapp:
|
|
image: airbyte/webapp:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-webapp
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
temporal:
|
|
image: airbyte/temporal:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-temporal
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
container-orchestrator:
|
|
image: airbyte/container-orchestrator:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-container-orchestrator
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
metric-reporter:
|
|
image: airbyte/metrics-reporter:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-metrics/reporter
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|