diff --git a/blueprints/kestra/docker-compose.yml b/blueprints/kestra/docker-compose.yml new file mode 100644 index 00000000..8ec7fbaa --- /dev/null +++ b/blueprints/kestra/docker-compose.yml @@ -0,0 +1,65 @@ +volumes: + postgres-data: + driver: local + kestra-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 + + kestra: + image: kestra/kestra:latest + pull_policy: always + # Note that this setup with a root user is intended for development purpose. + # Our base image runs without root, but the Docker Compose implementation needs root to access the Docker socket + # To run Kestra in a rootless mode in production, see: https://kestra.io/docs/installation/podman-compose + user: "root" + command: server standalone + volumes: + - kestra-data:/app/storage + - /var/run/docker.sock:/var/run/docker.sock + - /tmp/kestra-wd:/tmp/kestra-wd + environment: + KESTRA_CONFIGURATION: | + datasources: + postgres: + url: jdbc:postgresql://postgres:5432/kestra + driverClassName: org.postgresql.Driver + username: kestra + password: k3str4 + kestra: + server: + basicAuth: + enabled: false + username: "admin@localhost.dev" # it must be a valid email address + password: kestra + repository: + type: postgres + storage: + type: local + local: + basePath: "/app/storage" + queue: + type: postgres + tasks: + tmpDir: + path: /tmp/kestra-wd/tmp + url: http://localhost:8080/ + ports: + - "8080" + - "8081" + depends_on: + postgres: + condition: service_started \ No newline at end of file diff --git a/blueprints/kestra/kestra.svg b/blueprints/kestra/kestra.svg new file mode 100644 index 00000000..4d12c869 --- /dev/null +++ b/blueprints/kestra/kestra.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/blueprints/kestra/template.toml b/blueprints/kestra/template.toml new file mode 100644 index 00000000..c941e426 --- /dev/null +++ b/blueprints/kestra/template.toml @@ -0,0 +1,13 @@ +[variables] +main_domain = "${domain}" + +[config] +[[config.domains]] +serviceName = "kestra" +port = 8080 +host = "${main_domain}" + + +[config.env] + +[[config.mounts]] diff --git a/meta.json b/meta.json index 7bd27239..7737847e 100644 --- a/meta.json +++ b/meta.json @@ -223,6 +223,21 @@ "automation" ] }, + { + "id": "kestra", + "name": "Kestra", + "version": "latest", + "description": "Unified Orchestration Platform to Simplify Business-Critical Workflows and Govern them as Code and from the UI.", + "logo": "kestra.svg", + "links": { + "github": "https://github.com/kestra-io/kestra", + "website": "https://kestra.io", + "docs": "https://kestra.io/docs" + }, + "tags": [ + "automation" + ] + }, { "id": "wordpress", "name": "Wordpress",