Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): Correct syntax for specifying secrets #130

Merged
merged 2 commits into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading