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

Update "Setting Nameservers for DNS01 Self Check" example #528

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions content/en/docs/configuration/acme/dns01/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ If this is not desired (for example with multiple authoritative nameservers or
split-horizon DNS), the cert-manager controller exposes two flags that allows
you alter this behavior:

`--dns01-recursive-nameservers` Comma separated string with host and port of the
recursive nameservers cert-manager should query.
`--dns01-recursive-nameservers` String with host and port of the
recursive nameservers cert-manager should query. This parameter can be supplied multiple times.

`--dns01-recursive-nameservers-only` Forces cert-manager to only use the
recursive nameservers for verification. Enabling this option could cause the DNS01
Expand All @@ -69,15 +69,15 @@ self check to take longer due to caching performed by the recursive nameservers.

Example usage:
```bash
--dns01-recursive-nameservers-only --dns01-recursive-nameservers="8.8.8.8:53,1.1.1.1:53"
--dns01-recursive-nameservers-only --dns01-recursive-nameservers="8.8.8.8:53" --dns01-recursive-nameservers="1.1.1.1:53"
```

If you're using the `cert-manager` helm chart, you can set recursive nameservers
through `.Values.extraArgs` or at the command at helm install/upgrade time
with `--set`:

```bash
--set 'extraArgs={--dns01-recursive-nameservers-only,--dns01-recursive-nameservers=8.8.8.8:53\,1.1.1.1:53}'
--set 'extraArgs={--dns01-recursive-nameservers-only,--dns01-recursive-nameservers=8.8.8.8:53,--dns01-recursive-nameservers=1.1.1.1:53}'
```

## Delegated Domains for DNS01
Expand Down