-
Notifications
You must be signed in to change notification settings - Fork 764
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
Add Acme certificate resolver configuration #419
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -433,6 +433,27 @@ persistence: | |
annotations: {} | ||
# subPath: "" # only mount a subpath of the Volume into the pod | ||
|
||
certResolvers: {} | ||
# letsencrypt: | ||
# # for challenge options cf. https://doc.traefik.io/traefik/https/acme/ | ||
# email: email@example.com | ||
# dnsChallenge: | ||
# # also add the provider's required configuration under env | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have to emphasize that Kubernetes Secret containing DNS provider data is mandatory. Otherwise, a user might be confused about where the sensitive (APK_KEY, login) data should be added. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a bit confused. How would you rephrase the current comment to be more clear? |
||
# # or expand then from secrets/configmaps with envfrom | ||
# # cf. https://doc.traefik.io/traefik/https/acme/#providers | ||
# provider: digitalocean | ||
# # add futher options for the dns challenge as needed | ||
# # cf. https://doc.traefik.io/traefik/https/acme/#dnschallenge | ||
# delayBeforeCheck: 30 | ||
# resolvers: | ||
# - 1.1.1.1 | ||
# - 8.8.8.8 | ||
# tlsChallenge: true | ||
# httpChallenge: | ||
# entryPoint: "web" | ||
# # match the path to persistence | ||
# storage: /data/acme.json | ||
|
||
# If hostNetwork is true, runs traefik in the host network namespace | ||
# To prevent unschedulabel pods due to port collisions, if hostNetwork=true | ||
# and replicas>1, a pod anti-affinity is recommended and will be set if the | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that indention is not correct, there should 2 white spaces instead of 3.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's
#
(sharp-space) for the comment and two spaces for the indentation.Other places have a space after the sharp for comments too. Is is a problem?