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

UltraDNS Provider #1635

Merged
merged 28 commits into from
Jul 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
844b787
Started making changes on ultradns plugin
kbhandari May 7, 2020
db3fdfb
Finalized version of ultradns provider
kbhandari May 11, 2020
00ecf54
Quick fixed ultradns.md doc
kbhandari Jun 15, 2020
667a20a
Added Domain filter scenario
kbhandari Jun 15, 2020
784e904
Added Domain filter test cases
kbhandari Jun 16, 2020
a202775
Added fix for default TTL
kbhandari Jun 16, 2020
7a71b29
Added final review comments
kbhandari Jun 16, 2020
f5db378
Made go.mod and go.sunm file changes
kbhandari Jun 16, 2020
fe1c374
Merge pull request #1 from aliasgharmhowwala/feature/ultradns_provider
kbhandari Jun 16, 2020
00da3a1
Merge branch 'master' into master
kbhandari Jun 16, 2020
dd7d24a
Made changes according to the new external-dns changes
kbhandari Jun 17, 2020
1d8d156
Merge pull request #2 from aliasgharmhowwala/feature/ultradns_provider
kbhandari Jun 17, 2020
521fff4
Added golints recommendations
kbhandari Jun 17, 2020
c83ae0a
Merge pull request #3 from aliasgharmhowwala/feature/ultradns_provider
kbhandari Jun 17, 2020
4809e19
Merge branch 'master' into master
kbhandari Jun 18, 2020
3b085c5
Merge branch 'master' into master
kbhandari Jun 30, 2020
768211d
Merge branch 'master' into master
kbhandari Jul 10, 2020
63408f5
Incorporated review comments
kbhandari Jul 22, 2020
44a6381
Added linting recommendations
kbhandari Jul 22, 2020
49b4142
Merge pull request #4 from aliasgharmhowwala/feature/ultradns_provider
kbhandari Jul 22, 2020
67207c0
Incorporated Review comments
kbhandari Jul 22, 2020
6c5cc73
Merge pull request #5 from aliasgharmhowwala/feature/ultradns_provider
kbhandari Jul 22, 2020
62b7bf1
Merge branch 'master' into master
kbhandari Jul 29, 2020
0a7c4fd
Incorprated master changes
kbhandari Jul 29, 2020
783355f
Added review comments
kbhandari Jul 29, 2020
e083e4e
Added review comments
kbhandari Jul 29, 2020
185d17d
Merge branch 'master' into feature/ultradns_provider
kbhandari Jul 29, 2020
5f7338f
Merge pull request #6 from aliasgharmhowwala/feature/ultradns_provider
kbhandari Jul 29, 2020
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 .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@ provider/vinyldns: provider/vinyldns*

# Add 'provider/vultr' in file which starts with vultr
provider/vultr: provider/vultr*

# Add 'provider/ultradns' in file which starts with ultradns
provider/ultradns: provider/ultradns*
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Fix: add serviceaccount name in kustomize deployment (#1689) @jmthvt
- Updates Oracle OCI SDK to latest (#1687) @ericrrath
- UltraDNS Provider (#1635) @kbhandari

## v0.7.2 - 2020-06-03

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ The following table clarifies the current status of the providers according to t
| Akamai FastDNS | Alpha | |
| OVH | Alpha | |
| Vultr | Alpha | |
| UltraDNS | Alpha | |

## Running ExternalDNS:

Expand Down Expand Up @@ -147,6 +148,7 @@ The following tutorials are provided:
* [VinylDNS](docs/tutorials/vinyldns.md)
* [OVH](docs/tutorials/ovh.md)
* [Vultr](docs/tutorials/vultr.md)
* [UltraDNS](docs/tutorials/ultradns.md)

### Running Locally

Expand Down
4 changes: 4 additions & 0 deletions docs/ttl.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Providers
- [x] TransIP
- [x] RFC2136
- [x] Vultr
- [x] UltraDNS

PRs welcome!

Expand Down Expand Up @@ -80,3 +81,6 @@ The TransIP Provider minimal TTL is used when the TTL is 0. The minimal TTL is 6

### Vultr Provider
The Vultr provider minimal TTL is used when the TTL is 0. The default is 1 hour.

### UltraDNS
The UltraDNS provider minimal TTL is used when the TTL is not provided. The default TTL is account level default TTL, if defined, otherwise 24 hours.
Loading