[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:
parent
b0aaa7b813
commit
ed6d505433
1 changed files with 3 additions and 3 deletions
|
|
@ -57,7 +57,7 @@ resource "kubernetes_deployment" "roundcubemail" {
|
|||
spec {
|
||||
container {
|
||||
name = "roundcube"
|
||||
image = "roundcube/roundcubemail:latest"
|
||||
image = "roundcube/roundcubemail:1.6-apache"
|
||||
# Uncomment me to mount additional settings
|
||||
# volume_mount {
|
||||
# name = "imap-config"
|
||||
|
|
@ -111,11 +111,11 @@ resource "kubernetes_deployment" "roundcubemail" {
|
|||
|
||||
env {
|
||||
name = "ROUNDCUBEMAIL_SMTP_DEBUG"
|
||||
value = "true"
|
||||
value = "false"
|
||||
}
|
||||
env {
|
||||
name = "ROUNDCUBEMAIL_DEBUG_LEVEL"
|
||||
value = "6"
|
||||
value = "1"
|
||||
}
|
||||
env {
|
||||
name = "ROUNDCUBEMAIL_LOG_DRIVER"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue