Skip to content

Commit

Permalink
Merge pull request #130 from radicand/master
Browse files Browse the repository at this point in the history
fix(docs): Correct syntax for specifying secrets
  • Loading branch information
cfis authored Aug 25, 2024
2 parents d61bad1 + 8c0f92f commit 4ec28e2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/docker-mailserver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "14.0.0"
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker.
name: docker-mailserver
version: 4.0.5
version: 4.0.6
sources:
- https://github.com/docker-mailserver/docker-mailserver-helm
maintainers:
Expand Down
18 changes: 10 additions & 8 deletions charts/docker-mailserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -611,15 +611,17 @@ configMaps:
## such as DKIM signing keys.
##
## secrets:
## - name: rspamd.example.com # This is the name of the Secret
## create: true # If true, create a new Secret
## path: rspamd.dkim.rsa-2048-mail-example.com.private.txt
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
## rspamd.example.com:
## name: rspamd.example.com # This is the name of the Secret
## create: true # If true, create a new Secret
## path: rspamd.dkim.rsa-2048-mail-example.com.private.txt
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
##
## - name: rspamd.dkim.rsa-2048-mail-example.com.public
## create: true
## path: rspamd/dkim/rsa-2048-mail-example.com.public
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
## rspamd.dkim.rsa-2048-mail-example.com.public:
## name: rspamd.dkim.rsa-2048-mail-example.com.public
## create: true
## path: rspamd/dkim/rsa-2048-mail-example.com.public
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
##
## If you set the create key to false, then you must manually create the ConfigMaps before deploying the chart.
##
Expand Down

0 comments on commit 4ec28e2

Please sign in to comment.