mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 01:26:59 +02:00
chore: bump version to v0.5.1 (#560)
This commit is contained in:
parent
daeda2ed53
commit
960151a5ac
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,3 +1,14 @@
|
||||
## v0.5.1 - 2018-05-16
|
||||
|
||||
- Refactor implementation of sync loop to use `time.Ticker` (#553) @r0fls
|
||||
- Document how ExternalDNS gets permission to change AWS Route53 entries (#557) @hjacobs
|
||||
- Fix CNAME support for the PowerDNS provider (#547) @kciredor
|
||||
- Add support for hostname annotation in Ingress resource (#545) @rajatjindal
|
||||
- Fix for TTLs being ignored on headless Services (#546) @danbondd
|
||||
- Fix failing tests by giving linters more time to do their work (#548) @linki
|
||||
- Fix misspelled flag for the OpenStack Designate provider (#542) @zentale
|
||||
- Document additional RBAC rules needed to read Pods (#538) @danbondd
|
||||
|
||||
## v0.5.0 - 2018-04-23
|
||||
|
||||
- Google: Correctly filter records that don't match all filters (#533) @prydie @linki
|
||||
|
@ -160,7 +160,7 @@ $ docker run \
|
||||
-e EXTERNAL_DNS_SOURCE=$'service\ningress' \
|
||||
-e EXTERNAL_DNS_PROVIDER=google \
|
||||
-e EXTERNAL_DNS_DOMAIN_FILTER=$'foo.com\nbar.com' \
|
||||
registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
time="2017-08-08T14:10:26Z" level=info msg="config: &{Master: KubeConfig: Sources:[service ingress] Namespace: ...
|
||||
```
|
||||
|
||||
|
@ -83,7 +83,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --source=ingress
|
||||
@ -146,7 +146,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --source=ingress
|
||||
|
@ -143,7 +143,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --source=ingress
|
||||
@ -210,7 +210,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --source=ingress
|
||||
|
@ -42,7 +42,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service # ingress is also possible
|
||||
- --domain-filter=example.com # (optional) limit to only example.com domains; change to match the zone created above.
|
||||
@ -106,7 +106,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service # ingress is also possible
|
||||
- --domain-filter=example.com # (optional) limit to only example.com domains; change to match the zone created above.
|
||||
|
@ -39,7 +39,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service # ingress is also possible
|
||||
- --domain-filter=example.com # (optional) limit to only example.com domains; change to match the zone created above.
|
||||
@ -99,7 +99,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service # ingress is also possible
|
||||
- --domain-filter=example.com # (optional) limit to only example.com domains; change to match the zone created above.
|
||||
|
@ -41,7 +41,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=ingress
|
||||
- --txt-prefix=_d
|
||||
|
@ -88,7 +88,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --source=ingress
|
||||
@ -150,7 +150,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --source=ingress
|
||||
|
@ -25,7 +25,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --debug
|
||||
- --source=service
|
||||
@ -84,7 +84,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --debug
|
||||
- --source=service
|
||||
|
@ -66,7 +66,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --domain-filter=example.com # (optional) limit to only example.com domains.
|
||||
@ -143,7 +143,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service
|
||||
- --domain-filter=example.com # (optional) limit to only example.com domains.
|
||||
|
@ -251,7 +251,7 @@ spec:
|
||||
serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=ingress
|
||||
- --domain-filter=external-dns-test.gcp.zalan.do
|
||||
|
@ -40,7 +40,7 @@ spec:
|
||||
# serviceAccountName: external-dns
|
||||
containers:
|
||||
- name: external-dns
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
args:
|
||||
- --source=service # or ingress or both
|
||||
- --provider=pdns
|
||||
|
@ -243,7 +243,7 @@ spec:
|
||||
- --txt-owner-id=external-dns
|
||||
- --annotation-filter=kubernetes.io/ingress.class=external-ingress
|
||||
- --aws-zone-type=public
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
name: external-dns-public
|
||||
```
|
||||
|
||||
@ -281,7 +281,7 @@ spec:
|
||||
- --txt-owner-id=dev.k8s.nexus
|
||||
- --annotation-filter=kubernetes.io/ingress.class=internal-ingress
|
||||
- --aws-zone-type=private
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.0
|
||||
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.1
|
||||
name: external-dns-private
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user