Skip to content
Open
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
3 changes: 3 additions & 0 deletions charts/cert-manager-webhook-ovh/templates/issuer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ spec:
name: {{ .externalAccountBinding.keySecretRef.name | quote }}
key: {{ .externalAccountBinding.keySecretRef.key | quote }}
{{- end}}
{{- if .disableAccountKeyGeneration }}
disableAccountKeyGeneration: {{ .disableAccountKeyGeneration }}
{{- end}}
privateKeySecretRef:
name: {{ printf "%s-account-key" .name | quote }}
solvers:
Expand Down
3 changes: 3 additions & 0 deletions charts/cert-manager-webhook-ovh/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@ issuers:
# email to use when registering your account with Let's encrypt.
email: [email protected]

# If the disableAccountKeyGeneration field is set, cert-manager will not create a new ACME account and use the existing key specified in privateKeySecretRef
# disableAccountKeyGeneration: true

# If the ACME server supports profiles, you can specify the profile name here.
# For more details, see https://cert-manager.io/docs/configuration/acme/#acme-certificate-profiles
# Run the command `curl -fsSL https://acme-v02.api.letsencrypt.org/directory` and inpsect the object `profiles`.
Expand Down