Skip to content

Commit 4ec28e2

Browse files
authored
Merge pull request docker-mailserver#130 from radicand/master
fix(docs): Correct syntax for specifying secrets
2 parents d61bad1 + 8c0f92f commit 4ec28e2

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

charts/docker-mailserver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: "14.0.0"
33
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker.
44
name: docker-mailserver
5-
version: 4.0.5
5+
version: 4.0.6
66
sources:
77
- https://github.com/docker-mailserver/docker-mailserver-helm
88
maintainers:

charts/docker-mailserver/values.yaml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -611,15 +611,17 @@ configMaps:
611611
## such as DKIM signing keys.
612612
##
613613
## secrets:
614-
## - name: rspamd.example.com # This is the name of the Secret
615-
## create: true # If true, create a new Secret
616-
## path: rspamd.dkim.rsa-2048-mail-example.com.private.txt
617-
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
614+
## rspamd.example.com:
615+
## name: rspamd.example.com # This is the name of the Secret
616+
## create: true # If true, create a new Secret
617+
## path: rspamd.dkim.rsa-2048-mail-example.com.private.txt
618+
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
618619
##
619-
## - name: rspamd.dkim.rsa-2048-mail-example.com.public
620-
## create: true
621-
## path: rspamd/dkim/rsa-2048-mail-example.com.public
622-
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
620+
## rspamd.dkim.rsa-2048-mail-example.com.public:
621+
## name: rspamd.dkim.rsa-2048-mail-example.com.public
622+
## create: true
623+
## path: rspamd/dkim/rsa-2048-mail-example.com.public
624+
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
623625
##
624626
## If you set the create key to false, then you must manually create the ConfigMaps before deploying the chart.
625627
##

0 commit comments

Comments
 (0)