fix
This commit is contained in:
@@ -6,16 +6,51 @@ metadata:
|
|||||||
name: wildduck
|
name: wildduck
|
||||||
description: null
|
description: null
|
||||||
options:
|
options:
|
||||||
domain-name:
|
sub-domain:
|
||||||
default: your_company.com
|
default: mail
|
||||||
examples:
|
examples:
|
||||||
- your_company.com
|
- mail
|
||||||
type: string
|
type: string
|
||||||
domain:
|
additional-domains:
|
||||||
default: your-company
|
default: []
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
ingress-class:
|
||||||
|
default: traefik
|
||||||
examples:
|
examples:
|
||||||
- your-company
|
- traefik
|
||||||
type: string
|
type: string
|
||||||
|
backups:
|
||||||
|
default:
|
||||||
|
enable: false
|
||||||
|
endpoint: ''
|
||||||
|
key-id-key: s3-id
|
||||||
|
secret-key: s3-secret
|
||||||
|
secret-name: backup-settings
|
||||||
|
examples:
|
||||||
|
- enable: false
|
||||||
|
endpoint: ''
|
||||||
|
key-id-key: s3-id
|
||||||
|
secret-key: s3-secret
|
||||||
|
secret-name: backup-settings
|
||||||
|
properties:
|
||||||
|
enable:
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
endpoint:
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
|
key-id-key:
|
||||||
|
default: s3-id
|
||||||
|
type: string
|
||||||
|
secret-key:
|
||||||
|
default: s3-secret
|
||||||
|
type: string
|
||||||
|
secret-name:
|
||||||
|
default: backup-settings
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
images:
|
images:
|
||||||
default:
|
default:
|
||||||
haraka:
|
haraka:
|
||||||
@@ -179,51 +214,16 @@ options:
|
|||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
sub-domain:
|
domain:
|
||||||
default: mail
|
default: your-company
|
||||||
examples:
|
examples:
|
||||||
- mail
|
- your-company
|
||||||
type: string
|
|
||||||
ingress-class:
|
|
||||||
default: traefik
|
|
||||||
examples:
|
|
||||||
- traefik
|
|
||||||
type: string
|
type: string
|
||||||
issuer:
|
issuer:
|
||||||
default: letsencrypt-prod
|
default: letsencrypt-prod
|
||||||
examples:
|
examples:
|
||||||
- letsencrypt-prod
|
- letsencrypt-prod
|
||||||
type: string
|
type: string
|
||||||
backups:
|
|
||||||
default:
|
|
||||||
enable: false
|
|
||||||
endpoint: ''
|
|
||||||
key-id-key: s3-id
|
|
||||||
secret-key: s3-secret
|
|
||||||
secret-name: backup-settings
|
|
||||||
examples:
|
|
||||||
- enable: false
|
|
||||||
endpoint: ''
|
|
||||||
key-id-key: s3-id
|
|
||||||
secret-key: s3-secret
|
|
||||||
secret-name: backup-settings
|
|
||||||
properties:
|
|
||||||
enable:
|
|
||||||
default: false
|
|
||||||
type: boolean
|
|
||||||
endpoint:
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
key-id-key:
|
|
||||||
default: s3-id
|
|
||||||
type: string
|
|
||||||
secret-key:
|
|
||||||
default: s3-secret
|
|
||||||
type: string
|
|
||||||
secret-name:
|
|
||||||
default: backup-settings
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
redis:
|
redis:
|
||||||
default:
|
default:
|
||||||
exporter:
|
exporter:
|
||||||
@@ -257,11 +257,11 @@ options:
|
|||||||
default: 2Gi
|
default: 2Gi
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
additional-domains:
|
domain-name:
|
||||||
default: []
|
default: your_company.com
|
||||||
items:
|
examples:
|
||||||
type: string
|
- your_company.com
|
||||||
type: array
|
type: string
|
||||||
dependencies:
|
dependencies:
|
||||||
- dist: null
|
- dist: null
|
||||||
category: dbo
|
category: dbo
|
||||||
|
|||||||
@@ -49,10 +49,10 @@ resource "kubectl_manifest" "rspamd_deploy" {
|
|||||||
- name: config
|
- name: config
|
||||||
mountPath: /etc/rspamd/override.d/redis.conf
|
mountPath: /etc/rspamd/override.d/redis.conf
|
||||||
subPath: redis.conf
|
subPath: redis.conf
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
configMap:
|
configMap:
|
||||||
name: "${var.instance}-rspamd"
|
name: "${var.instance}-rspamd"
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -55,10 +55,10 @@ resource "kubectl_manifest" "webmail_deploy" {
|
|||||||
- name: config
|
- name: config
|
||||||
mountPath: /app/config/webmail.toml
|
mountPath: /app/config/webmail.toml
|
||||||
subPath: webmail.toml
|
subPath: webmail.toml
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
configMap:
|
configMap:
|
||||||
name: "${var.instance}-webmail"
|
name: "${var.instance}-webmail"
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -65,32 +65,32 @@ resource "kubectl_manifest" "wildduck_deploy" {
|
|||||||
- name: tls
|
- name: tls
|
||||||
mountPath: "/var/opt/certs"
|
mountPath: "/var/opt/certs"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/default.toml
|
mountPath: /wildduck/config/default.toml
|
||||||
subPath: default.toml
|
subPath: default.toml
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/api.toml
|
mountPath: /wildduck/config/api.toml
|
||||||
subPath: api.toml
|
subPath: api.toml
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/dbs.toml
|
mountPath: /wildduck/config/dbs.toml
|
||||||
subPath: dbs.toml
|
subPath: dbs.toml
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/dkim.toml
|
mountPath: /wildduck/config/dkim.toml
|
||||||
subPath: dkim.toml
|
subPath: dkim.toml
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/imap.toml
|
mountPath: /wildduck/config/imap.toml
|
||||||
subPath: imap.toml
|
subPath: imap.toml
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/pop3.toml
|
mountPath: /wildduck/config/pop3.toml
|
||||||
subPath: pop3.toml
|
subPath: pop3.toml
|
||||||
- name: config
|
- name: configmap
|
||||||
mountPath: /wildduck/config/sender.toml
|
mountPath: /wildduck/config/sender.toml
|
||||||
subPath: sender.toml
|
subPath: sender.toml
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: configmap
|
||||||
configMap:
|
configMap:
|
||||||
name: "${var.instance}-wildduck"
|
name: "${var.instance}-wildduck"
|
||||||
- name: tls
|
- name: tls
|
||||||
secret:
|
secret:
|
||||||
secretName: "${var.instance}-cert"
|
secretName: "${var.instance}-cert"
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
@@ -68,13 +68,13 @@ resource "kubectl_manifest" "zonemta_deploy" {
|
|||||||
- name: config
|
- name: config
|
||||||
mountPath: /app/config/interfaces/feeder.toml
|
mountPath: /app/config/interfaces/feeder.toml
|
||||||
subPath: feeder.toml
|
subPath: feeder.toml
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
configMap:
|
configMap:
|
||||||
name: "${var.instance}-zonemta"
|
name: "${var.instance}-zonemta"
|
||||||
- name: tls
|
- name: tls
|
||||||
secret:
|
secret:
|
||||||
secretName: "${var.instance}-cert"
|
secretName: "${var.instance}-cert"
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user