From e07f2d9ef927055e213c419bd848bd8feecf234d Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 27 Mar 2026 15:41:44 -0400 Subject: [PATCH] testing komodo injection --- compose.yaml | 2 +- config.yaml => water-config.yaml | 2 +- wind-config.yaml | 35 ++++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 2 deletions(-) rename config.yaml => water-config.yaml (89%) create mode 100644 wind-config.yaml diff --git a/compose.yaml b/compose.yaml index 0c7183e..5c53026 100644 --- a/compose.yaml +++ b/compose.yaml @@ -4,7 +4,7 @@ services: restart: unless-stopped image: docker.io/gitea/act_runner:0.2.11 environment: - CONFIG_FILE: /config.yaml + CONFIG_FILE: ${CONFIG_FILE} GITEA_INSTANCE_URL: ${GITEA_URL} GITEA_RUNNER_REGISTRATION_TOKEN: ${RUNNER_REGISTRATION_TOKEN} GITEA_RUNNER_NAME: ${RUNNER_NAME} diff --git a/config.yaml b/water-config.yaml similarity index 89% rename from config.yaml rename to water-config.yaml index 409fd18..c126a23 100644 --- a/config.yaml +++ b/water-config.yaml @@ -12,7 +12,7 @@ runner: fetch_timeout: 5s fetch_interval: 2s labels: - - "${RUNNER_TAG}:docker://gitea/runner-images:ubuntu-22.04" + - "water:docker://gitea/runner-images:ubuntu-22.04" cache: enabled: true diff --git a/wind-config.yaml b/wind-config.yaml new file mode 100644 index 0000000..743287a --- /dev/null +++ b/wind-config.yaml @@ -0,0 +1,35 @@ +log: + # The level of logging, can be trace, debug, info, warn, error, fatal + level: error + +runner: + file: .runner + # Execute how many tasks concurrently at the same time. + capacity: 5 + timeout: 1h + shutdown_timeout: 0s + insecure: false + fetch_timeout: 5s + fetch_interval: 2s + labels: + - "wind:docker://gitea/runner-images:ubuntu-22.04" + +cache: + enabled: true + dir: "" + host: "" + port: 0 + external_server: "" + +container: + network: "" + privileged: false + options: + workdir_parent: + valid_volumes: [] + docker_host: "" + force_pull: false + force_rebuild: false + +host: + workdir_parent: \ No newline at end of file