Skip to content

External DNS Operator: Update list of all supported WAPI versions #87263

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

Open
wants to merge 1 commit into
base: main
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
11 changes: 6 additions & 5 deletions modules/nw-control-dns-records-public-hosted-zone-infoblox.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,21 @@ spec:
name: infoblox-credentials
gridHost: ${INFOBLOX_GRID_PUBLIC_IP}
wapiPort: 443
wapiVersion: "2.3.1"
wapiVersion: ${INFOBLOX_WAPI_VERSION} <3>
domains:
- filterType: Include
matchType: Exact
name: test.example.com
source:
type: OpenShiftRoute <3>
type: OpenShiftRoute <4>
openshiftRouteOptions:
routerName: default <4>
routerName: default <5>
----
<1> Specifies the External DNS name.
<2> Defines the provider type.
<3> You can define options for the source of DNS records.
<4> If the source type is `OpenShiftRoute`, you can pass the OpenShift Ingress Controller name. External DNS selects the canonical hostname of that router as the target while creating CNAME record.
<3> Specifies the WAPI version. The currently supported WAPI versions are 2.12.2, 2.12.1, 2.12, 2.11, 2.10.5, 2.10.3, 2.10.2, 2.10.1, 2.10, 2.9.7, 2.9.5, 2.9.1, 2.9, 2.8, 2.7.3, 2.7.2, 2.7.1, 2.7, 2.6.1, 2.6, 2.5, 2.4, 2.3.1.
<4> You can define options for the source of DNS records.
<5> If the source type is `OpenShiftRoute`, you can pass the OpenShift Ingress Controller name. External DNS selects the canonical hostname of that router as the target while creating CNAME record.

. Create the `ExternalDNS` resource on Infoblox by running the following command:
+
Expand Down