Implemented working version of drone w/nginx https

This commit is contained in:
Bastian de Byl
2020-09-24 22:52:33 -04:00
parent e0abdbe506
commit 53f2868916
14 changed files with 93 additions and 50 deletions

View File

@@ -0,0 +1,3 @@
---
drone_server_proto: "https"
drone_runner_capacity: "1"

View File

@@ -1,17 +0,0 @@
---
- name: Create Drone CI container
community.general.docker_container:
name: drone
image: drone/drone
restart: true
restart_policy: on-failure
restart_retries: 3
env:
DRONE_GITHUB_CLIENT_ID: {{ drone_gh_client_id }}
DRONE_GITHUB_CLIENT_SECRET: {{ drone_gh_client_sec }}
DRONE_RPC_SECRET: {{ drone_rpc_secret }}
DRONE_SERVER_HOST: {{ ci_server_name }}
DRONE_SERVER_PROTO: {{ drone_server_proto }}
DRONE_GIT_ALWAYS_AUTH: 'true'
DRONE_USER_FILTER: {{ drone_user_filter }}

View File

@@ -0,0 +1,43 @@
---
- name: create drone-ci server container
diff: false
docker_container:
name: drone
image: drone/drone:latest
recreate: true
restart: true
restart_policy: on-failure
restart_retries: 3
env:
DRONE_GITHUB_CLIENT_ID: "{{ drone_gh_client_id }}"
DRONE_GITHUB_CLIENT_SECRET: "{{ drone_gh_client_sec }}"
DRONE_GIT_ALWAYS_AUTH: 'true'
DRONE_RPC_SECRET: "{{ drone_rpc_secret }}"
DRONE_SERVER_HOST: "{{ ci_server_name }}"
DRONE_SERVER_PROTO: "{{ drone_server_proto }}"
DRONE_USER_FILTER: "{{ drone_user_filter }}"
volumes:
- /var/lib/drone:/data
ports:
- "8080:80"
tags: drone
- name: create drone-ci worker container
diff: false
docker_container:
name: drone-runner
image: drone/drone-runner-docker:latest
recreate: true
restart: true
restart_policy: on-failure
restart_retries: 3
env:
DRONE_RPC_SECRET: "{{ drone_rpc_secret }}"
DRONE_RPC_HOST: "{{ ci_server_name }}"
DRONE_RPC_PROTO: "{{ drone_server_proto }}"
DRONE_RUNNER_CAPACITY: "{{ drone_runner_capacity }}"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "3000:3000"
tags: drone

View File

@@ -1,2 +1,2 @@
---
- import_tasks: docker.yml
- import_tasks: drone.yml