This commit is contained in:
2023-08-11 15:35:07 +02:00
parent 74ead6c517
commit 76fafed977
5 changed files with 76 additions and 76 deletions

View File

@@ -65,32 +65,32 @@ resource "kubectl_manifest" "wildduck_deploy" {
- name: tls
mountPath: "/var/opt/certs"
readOnly: true
- name: config
- name: configmap
mountPath: /wildduck/config/default.toml
subPath: default.toml
- name: config
- name: configmap
mountPath: /wildduck/config/api.toml
subPath: api.toml
- name: config
- name: configmap
mountPath: /wildduck/config/dbs.toml
subPath: dbs.toml
- name: config
- name: configmap
mountPath: /wildduck/config/dkim.toml
subPath: dkim.toml
- name: config
- name: configmap
mountPath: /wildduck/config/imap.toml
subPath: imap.toml
- name: config
- name: configmap
mountPath: /wildduck/config/pop3.toml
subPath: pop3.toml
- name: config
- name: configmap
mountPath: /wildduck/config/sender.toml
subPath: sender.toml
volumes:
- name: config
configMap:
name: "${var.instance}-wildduck"
- name: tls
volumes:
- name: configmap
configMap:
name: "${var.instance}-wildduck"
- name: tls
secret:
secretName: "${var.instance}-cert"
EOF