mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-07 10:06:57 +02:00
bluecat: update docs for provider
Add docs for skipping TLS verification
This commit is contained in:
parent
a5baad26d7
commit
3a1a01b72e
@ -3,6 +3,20 @@
|
|||||||
## Prerequisites
|
## Prerequisites
|
||||||
Install the BlueCat Gateway product and deploy the [community gateway workflows](https://github.com/bluecatlabs/gateway-workflows).
|
Install the BlueCat Gateway product and deploy the [community gateway workflows](https://github.com/bluecatlabs/gateway-workflows).
|
||||||
|
|
||||||
|
## Configuration Options
|
||||||
|
|
||||||
|
The options for configuring the Bluecat Provider are available through the json file provided to External-DNS via the flag `--bluecat-config-file`.
|
||||||
|
|
||||||
|
| Key | Required |
|
||||||
|
| ----------------- | ------------------ |
|
||||||
|
| gatewayHost | Yes |
|
||||||
|
| gatewayUsername | Yes |
|
||||||
|
| gatewayPassword | Yes |
|
||||||
|
| dnsConfiguration | Yes |
|
||||||
|
| dnsView | Yes |
|
||||||
|
| rootZone | Yes |
|
||||||
|
| skipTLSVerify | No (default false) |
|
||||||
|
|
||||||
## Deploy
|
## Deploy
|
||||||
Setup configuration file as k8s `Secret`.
|
Setup configuration file as k8s `Secret`.
|
||||||
```
|
```
|
||||||
@ -10,10 +24,11 @@ cat << EOF > ~/bluecat.json
|
|||||||
{
|
{
|
||||||
"gatewayHost": "https://bluecatgw.example.com",
|
"gatewayHost": "https://bluecatgw.example.com",
|
||||||
"gatewayUsername": "user",
|
"gatewayUsername": "user",
|
||||||
"GatewayPassword": "pass",
|
"gatewayPassword": "pass",
|
||||||
"dnsConfiguration": "Example",
|
"dnsConfiguration": "Example",
|
||||||
"dnsView": "Internal",
|
"dnsView": "Internal",
|
||||||
"rootZone": "example.com"
|
"rootZone": "example.com",
|
||||||
|
"skipTLSVerify": false
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
kubectl create secret generic bluecatconfig --from-file ~/bluecat.json -n bluecat-example
|
kubectl create secret generic bluecatconfig --from-file ~/bluecat.json -n bluecat-example
|
||||||
|
Loading…
Reference in New Issue
Block a user