feat: add docker runner and set runner dashboards
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
6
drone.tf
6
drone.tf
@@ -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 = "/"
|
||||
|
||||
Reference in New Issue
Block a user