mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-25 02:14:38 -05:00
chore(cicd): use a special database for each unit test
This commit is contained in:
@@ -2,7 +2,7 @@ services:
|
||||
mysql:
|
||||
image: mysql
|
||||
environment:
|
||||
MYSQL_DATABASE: kestra
|
||||
MYSQL_DATABASE: kestra_unit
|
||||
MYSQL_USER: kestra
|
||||
MYSQL_PASSWORD: k3str4
|
||||
MYSQL_ROOT_PASSWORD: "p4ssw0rd"
|
||||
@@ -15,7 +15,7 @@ services:
|
||||
postgres:
|
||||
image: postgres
|
||||
environment:
|
||||
POSTGRES_DB: kestra
|
||||
POSTGRES_DB: kestra_unit
|
||||
POSTGRES_USER: kestra
|
||||
POSTGRES_PASSWORD: k3str4
|
||||
ports:
|
||||
|
||||
82
docker-compose-dind.yml
Normal file
82
docker-compose-dind.yml
Normal file
@@ -0,0 +1,82 @@
|
||||
volumes:
|
||||
postgres-data:
|
||||
driver: local
|
||||
kestra-data:
|
||||
driver: local
|
||||
dind-socket:
|
||||
driver: local
|
||||
tmp-data:
|
||||
driver: local
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: kestra
|
||||
POSTGRES_USER: kestra
|
||||
POSTGRES_PASSWORD: k3str4
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 10
|
||||
|
||||
dind:
|
||||
image: docker:dind-rootless
|
||||
privileged: true
|
||||
user: "1000"
|
||||
environment:
|
||||
DOCKER_HOST: unix://dind/docker.sock
|
||||
command:
|
||||
- --log-level=fatal
|
||||
- --group=1000
|
||||
volumes:
|
||||
- dind-socket:/dind
|
||||
- tmp-data:/tmp/kestra-wd
|
||||
|
||||
kestra:
|
||||
image: kestra/kestra:latest-full
|
||||
pull_policy: always
|
||||
# Note that this is meant for development only. Refer to the documentation for production deployments of Kestra which runs without a root user.
|
||||
user: "root"
|
||||
command: server standalone --worker-thread=128
|
||||
volumes:
|
||||
- kestra-data:/app/storage
|
||||
- dind-socket:/dind
|
||||
- tmp-data:/tmp/kestra-wd
|
||||
environment:
|
||||
KESTRA_CONFIGURATION: |
|
||||
datasources:
|
||||
postgres:
|
||||
url: jdbc:postgresql://postgres:5432/kestra
|
||||
driverClassName: org.postgresql.Driver
|
||||
username: kestra
|
||||
password: k3str4
|
||||
kestra:
|
||||
server:
|
||||
basic-auth:
|
||||
enabled: false
|
||||
username: "admin@kestra.io" # it must be a valid email address
|
||||
password: kestra
|
||||
repository:
|
||||
type: postgres
|
||||
storage:
|
||||
type: local
|
||||
local:
|
||||
base-path: "/app/storage"
|
||||
queue:
|
||||
type: postgres
|
||||
tasks:
|
||||
tmp-dir:
|
||||
path: /tmp/kestra-wd/tmp
|
||||
url: http://localhost:8080/
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "8081:8081"
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_started
|
||||
dind:
|
||||
condition: service_started
|
||||
@@ -1,6 +1,6 @@
|
||||
datasources:
|
||||
mysql:
|
||||
url: jdbc:mysql://localhost:3306/kestra
|
||||
url: jdbc:mysql://localhost:3306/kestra_unit
|
||||
driverClassName: com.mysql.cj.jdbc.Driver
|
||||
username: kestra
|
||||
password: k3str4
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
datasources:
|
||||
postgres:
|
||||
url: jdbc:postgresql://localhost:5432/kestra
|
||||
url: jdbc:postgresql://localhost:5432/kestra_unit
|
||||
driverClassName: org.postgresql.Driver
|
||||
username: kestra
|
||||
password: k3str4
|
||||
|
||||
Reference in New Issue
Block a user