increase upload limit for pma to 50mb [ci skip]

This commit is contained in:
Viktor Barzin 2023-11-10 23:57:30 +00:00
parent 4ed2d3ec43
commit 1b66e78db2
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863

View file

@ -271,6 +271,10 @@ resource "kubernetes_deployment" "phpmyadmin" {
}
}
}
env {
name = "UPLOAD_LIMIT"
value = "300M"
}
}
}
}
@ -304,6 +308,7 @@ resource "kubernetes_ingress_v1" "phpmyadmin" {
# "nginx.ingress.kubernetes.io/auth-tls-secret" = "default/ca-secret"
"nginx.ingress.kubernetes.io/auth-url" : "https://oauth2.viktorbarzin.me/oauth2/auth"
"nginx.ingress.kubernetes.io/auth-signin" : "https://oauth2.viktorbarzin.me/oauth2/start?rd=/redirect/$http_host$escaped_request_uri"
"nginx.ingress.kubernetes.io/proxy-body-size" : "50m"
}
}
spec {