This commit is contained in:
2023-08-13 07:31:07 +02:00
parent 3ba3808ad5
commit 372912b9bf
3 changed files with 51 additions and 51 deletions

View File

@@ -6,10 +6,10 @@ metadata:
name: wildduck name: wildduck
description: null description: null
options: options:
sub-domain: ingress-class:
default: mail default: traefik
examples: examples:
- mail - traefik
type: string type: string
redis: redis:
default: default:
@@ -44,11 +44,46 @@ 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
sub-domain:
default: mail
examples:
- mail
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
issuer: issuer:
default: letsencrypt-prod default: letsencrypt-prod
examples: examples:
@@ -59,6 +94,11 @@ options:
examples: examples:
- your-company - your-company
type: string type: string
additional-domains:
default: []
items:
type: string
type: array
images: images:
default: default:
haraka: haraka:
@@ -222,46 +262,6 @@ options:
type: string type: string
type: object type: object
type: object type: object
domain-name:
default: your_company.com
examples:
- your_company.com
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
ingress-class:
default: traefik
examples:
- traefik
type: string
dependencies: dependencies:
- dist: null - dist: null
category: dbo category: dbo

View File

@@ -250,7 +250,7 @@ resource "kubectl_manifest" "wildduck_config" {
# Optional database name or connection url for ZoneMTA queue database. This is # Optional database name or connection url for ZoneMTA queue database. This is
# used to push outbound emails to the sending queue # used to push outbound emails to the sending queue
sender="zonemta" # sender="zonemta"
#queued="mail" #queued="mail"
dkim.toml: |- dkim.toml: |-

View File

@@ -116,11 +116,11 @@ resource "kubectl_manifest" "zonemta_config" {
# Database configuration # Database configuration
# this file is loaded when NODE_ENV=production # this file is loaded when NODE_ENV=production
# MongoDB connection string # MongoDB connection string
mongo="mongodb://zonemta:${local.mongo-password}@${var.instance}-${var.component}-mongo-svc.${var.namespace}.svc:27017/zonemta" mongo="mongodb://${var.component}:${local.mongo-password}@${var.instance}-${var.component}-mongo-svc.${var.namespace}.svc:27017/${var.component}"
# Redis connection string # Redis connection string
redis="redis://${var.instance}-${var.component}-redis.${var.namespace}.svc:6379/2" redis="redis://${var.instance}-${var.component}-redis.${var.namespace}.svc:6379/2"
# Database name for ZoneMTA data in MongoDB. In most cases it should be the same as in the connection string # Database name for ZoneMTA data in MongoDB. In most cases it should be the same as in the connection string
sender="wildduck" # sender="zonemta"
# Database name for Wild Duck users # Database name for Wild Duck users
# users="wildduck" # users="wildduck"
# Database name for Wild Duck attachments # Database name for Wild Duck attachments