remove pre-defined runner volumes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-12-06 15:44:48 +01:00
parent e56614ea35
commit f68a5feb2e
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
2 changed files with 3 additions and 4 deletions

View File

@ -56,7 +56,9 @@ services:
{% if inst.api_host is defined %}
- DRONE_HTTP_HOST={{ inst.api_host }}
{% endif %}
- DRONE_RUNNER_VOLUMES={{ (__droneci_autoscaler_runner_volumes + (inst.runner_volumes | default(droneci_autoscaler_runner_volumes))) | join(",") }}
{% if inst.runner_volumes | default(droneci_autoscaler_runner_volumes) | default(False) %}
- DRONE_RUNNER_VOLUMES={{ inst.runner_volumes | default(droneci_autoscaler_runner_volumes) | join(",") }}
{% endif %}
- DRONE_RUNNER_PRIVILEGED_IMAGES={{ inst.runner_privileged | default(droneci_autoscaler_runner_privileged) | join(",") }}
- DRONE_RUNNER_ENV_FILE={{ inst.runner_env_file | default(droneci_autoscaler_runner_env_file) }}
- DRONE_GC_ENABLED={{ (inst.gc_enabled | default(droneci_autoscaler_gc_enabled)) | bool | lower }}

View File

@ -1,3 +0,0 @@
---
__droneci_autoscaler_runner_volumes:
- "/etc/drone.conf:/etc/drone.conf"