feat: add docker runner and set runner dashboards
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-28 20:36:44 +01:00
parent 0cff237e31
commit 0610bb40a7
6 changed files with 118 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ resource "helm_release" "drone_server" {
values = [
jsonencode({
env = {
DRONE_SERVER_HOST = local.ingress_domain
DRONE_SERVER_HOST = local.drone_domain
DRONE_SERVER_PROTO = "https"
DRONE_GITEA_SERVER = "https://${local.gitea_server}/"
}
@@ -23,11 +23,11 @@ resource "helm_release" "drone_server" {
"traefik.ingress.kubernetes.io/router.entrypoints" = "websecure"
"traefik.ingress.kubernetes.io/router.tls" = "true"
"traefik.ingress.kubernetes.io/router.tls.certresolver" = "acme-thomasklein-me"
"traefik.ingress.kubernetes.io/router.tls.domains.0.main" = local.ingress_domain
"traefik.ingress.kubernetes.io/router.tls.domains.0.main" = local.drone_domain
}
hosts = [
{
host = local.ingress_domain
host = local.drone_domain
paths = [
{
path = "/"