v1.484.0
cloudposse-releaser
released this
14 Aug 17:18
·
83 commits
to refs/heads/main
since this release
Update `eks/external-dns` component to support Istio `istio-gateway` resources @aknysh (#1098)
what
- Update
eks/external-dns
component to support Istioistio-gateway
resources
why
- The
external-dns
Helm Chart supports thesources
variable (notsource
) to specify the resources types to be observed for new DNS entries by ExternalDNS
## @param sources [array] K8s resources type to be observed for new DNS entries by ExternalDNS
##
sources:
# - crd
- service
- ingress
The code used the source
variable instead of sources
. It was working for the service
and ingress
types because they are in the Chart values by default.
The istio-gateway
resource was never added, preventing external-dns
from managing Istio Gateways and creating DNS records for the Gateway's hosts.