Skip to content

Commit d7689aa

Browse files
authored
fix(docs): Correct syntax for specifying secrets
1 parent d61bad1 commit d7689aa

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

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)