Update drone config and add drone monitoring to prometheus

This commit is contained in:
Alex 2022-08-30 15:48:10 +02:00
parent b5328c3341
commit e81716e41e
Signed by: lx
GPG Key ID: 0E496D15096376BE
2 changed files with 16 additions and 5 deletions

View File

@ -43,7 +43,7 @@ job "drone-ci" {
task "drone_server" {
driver = "docker"
config {
image = "drone/drone:2.12.0"
image = "drone/drone:2.12.1"
ports = [ "web_port" ]
volumes = [
@ -71,11 +71,9 @@ DRONE_S3_PATH_STYLE=true
DRONE_DATABASE_DRIVER=sqlite3
DRONE_DATABASE_DATASOURCE=/ephemeral/drone.db
DRONE_USER_CREATE=username:lx-admin,admin:true
__DRONE_REGISTRATION_CLOSED=true
DRONE_LOGS_TEXT=true
DRONE_LOGS_PRETTY=true
DRONE_REGISTRATION_CLOSED=true
DRONE_LOGS_DEBUG=true
DOCKER_API_VERSION=1.39
DRONE_LOGS_TRACE=true
EOH
destination = "secrets/env"
env = true

View File

@ -28,3 +28,16 @@ scrape_configs:
ca_file: /etc/prometheus/consul.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key
- job_name: 'drone'
authorization:
type: Bearer
credentials: {{ key "secrets/drone-ci/metrics_token" }}
consul_sd_configs:
- server: 'https://localhost:8501'
services:
- 'drone'
tls_config:
ca_file: /etc/prometheus/consul.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key