Skip to content

Commit ae98f12

Browse files
committed
feat(chart): Add cluster issuer disableAccountKeyGeneration option
Signed-off-by: Thomas Coudert <[email protected]>
1 parent 06a5223 commit ae98f12

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

charts/cert-manager-webhook-ovh/templates/issuer.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ spec:
3131
name: {{ .externalAccountBinding.keySecretRef.name | quote }}
3232
key: {{ .externalAccountBinding.keySecretRef.key | quote }}
3333
{{- end}}
34+
{{- if .disableAccountKeyGeneration }}
35+
disableAccountKeyGeneration: {{.disableAccountKeyGeneration }}
36+
{{- end}}
3437
privateKeySecretRef:
3538
name: {{ printf "%s-account-key" .name | quote }}
3639
solvers:

charts/cert-manager-webhook-ovh/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,9 @@ issuers:
173173
# email to use when registering your account with Let's encrypt.
174174
175175

176+
# If the disableAccountKeyGeneration field is set, cert-manager will not create a new ACME account and use the existing key specified in privateKeySecretRef
177+
# disableAccountKeyGeneration: true
178+
176179
# If the ACME server supports profiles, you can specify the profile name here.
177180
# For more details, see https://cert-manager.io/docs/configuration/acme/#acme-certificate-profiles
178181
# Run the command `curl -fsSL https://acme-v02.api.letsencrypt.org/directory` and inpsect the object `profiles`.

0 commit comments

Comments
 (0)