[ci skip] roundcubemail: pin to 1.6-apache, disable debug logging

Pin Roundcubemail to stable 1.6-apache tag instead of :latest to
prevent unexpected breakage. Disable SMTP debug and reduce debug
level from 6 to 1 for production use.
This commit is contained in:
Viktor Barzin 2026-02-23 20:29:39 +00:00
parent b0aaa7b813
commit ed6d505433

View file

@ -57,7 +57,7 @@ resource "kubernetes_deployment" "roundcubemail" {
spec { spec {
container { container {
name = "roundcube" name = "roundcube"
image = "roundcube/roundcubemail:latest" image = "roundcube/roundcubemail:1.6-apache"
# Uncomment me to mount additional settings # Uncomment me to mount additional settings
# volume_mount { # volume_mount {
# name = "imap-config" # name = "imap-config"
@ -111,11 +111,11 @@ resource "kubernetes_deployment" "roundcubemail" {
env { env {
name = "ROUNDCUBEMAIL_SMTP_DEBUG" name = "ROUNDCUBEMAIL_SMTP_DEBUG"
value = "true" value = "false"
} }
env { env {
name = "ROUNDCUBEMAIL_DEBUG_LEVEL" name = "ROUNDCUBEMAIL_DEBUG_LEVEL"
value = "6" value = "1"
} }
env { env {
name = "ROUNDCUBEMAIL_LOG_DRIVER" name = "ROUNDCUBEMAIL_LOG_DRIVER"