mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 09:36:58 +02:00
Merge pull request #3452 from BadLiveware/feature/allow-target-annotation-gateway
Allow annotation target override on gateway
This commit is contained in:
commit
65db0c73ec
@ -12,7 +12,7 @@ The following table documents which sources support which annotations:
|
|||||||
| CloudFoundry | | | | | | |
|
| CloudFoundry | | | | | | |
|
||||||
| CRD | | | | | | |
|
| CRD | | | | | | |
|
||||||
| F5 | | | | | Yes | |
|
| F5 | | | | | Yes | |
|
||||||
| Gateway | Yes | Yes[^1] | | | Yes | Yes |
|
| Gateway | Yes | Yes[^1] | | Yes[^4] | Yes | Yes |
|
||||||
| Gloo | | | | | Yes | Yes |
|
| Gloo | | | | | Yes | Yes |
|
||||||
| Ingress | Yes | Yes[^1] | | Yes | Yes | Yes |
|
| Ingress | Yes | Yes[^1] | | Yes | Yes | Yes |
|
||||||
| Istio | Yes | Yes[^1] | | Yes | Yes | Yes |
|
| Istio | Yes | Yes[^1] | | Yes | Yes | Yes |
|
||||||
@ -27,6 +27,7 @@ The following table documents which sources support which annotations:
|
|||||||
[^1]: Unless the `--ignore-hostname-annotation` flag is specified.
|
[^1]: Unless the `--ignore-hostname-annotation` flag is specified.
|
||||||
[^2]: Only behaves differently than `hostname` for `Service`s of type `LoadBalancer`.
|
[^2]: Only behaves differently than `hostname` for `Service`s of type `LoadBalancer`.
|
||||||
[^3]: Also supported on `Pods` referenced from a headless `Service`'s `Endpoints`.
|
[^3]: Also supported on `Pods` referenced from a headless `Service`'s `Endpoints`.
|
||||||
|
[^4]: The annotation should be on the `Gateway`
|
||||||
|
|
||||||
## external-dns.alpha.kubernetes.io/access
|
## external-dns.alpha.kubernetes.io/access
|
||||||
|
|
||||||
|
@ -352,8 +352,12 @@ func (c *gatewayRouteResolver) resolve(rt gatewayRoute) (map[string]endpoint.Tar
|
|||||||
if !ok {
|
if !ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
for _, addr := range gw.gateway.Status.Addresses {
|
override := getTargetsFromTargetAnnotation(gw.gateway.Annotations)
|
||||||
hostTargets[host] = append(hostTargets[host], addr.Value)
|
hostTargets[host] = append(hostTargets[host], override...)
|
||||||
|
if len(override) == 0 {
|
||||||
|
for _, addr := range gw.gateway.Status.Addresses {
|
||||||
|
hostTargets[host] = append(hostTargets[host], addr.Value)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
match = true
|
match = true
|
||||||
}
|
}
|
||||||
|
@ -1033,6 +1033,91 @@ func TestGatewayHTTPRouteSourceEndpoints(t *testing.T) {
|
|||||||
}},
|
}},
|
||||||
endpoints: nil,
|
endpoints: nil,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "AnnotationOverride",
|
||||||
|
config: Config{
|
||||||
|
GatewayNamespace: "gateway-namespace",
|
||||||
|
},
|
||||||
|
namespaces: namespaces("gateway-namespace", "route-namespace"),
|
||||||
|
gateways: []*v1beta1.Gateway{
|
||||||
|
{
|
||||||
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
|
Name: "overriden-gateway",
|
||||||
|
Namespace: "gateway-namespace",
|
||||||
|
Annotations: map[string]string{
|
||||||
|
targetAnnotationKey: "4.3.2.1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Spec: v1beta1.GatewaySpec{
|
||||||
|
Listeners: []v1beta1.Listener{{
|
||||||
|
Protocol: v1beta1.HTTPProtocolType,
|
||||||
|
AllowedRoutes: allowAllNamespaces,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
Status: gatewayStatus("1.2.3.4"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
routes: []*v1beta1.HTTPRoute{{
|
||||||
|
ObjectMeta: objectMeta("route-namespace", "test"),
|
||||||
|
Spec: v1beta1.HTTPRouteSpec{
|
||||||
|
Hostnames: hostnames("test.example.internal"),
|
||||||
|
},
|
||||||
|
Status: httpRouteStatus( // The route is attached to both gateways.
|
||||||
|
gatewayParentRef("gateway-namespace", "overriden-gateway"),
|
||||||
|
),
|
||||||
|
}},
|
||||||
|
endpoints: []*endpoint.Endpoint{
|
||||||
|
newTestEndpoint("test.example.internal", "A", "4.3.2.1"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "MutlipleGatewaysOneAnnotationOverride",
|
||||||
|
config: Config{
|
||||||
|
GatewayNamespace: "gateway-namespace",
|
||||||
|
},
|
||||||
|
namespaces: namespaces("gateway-namespace", "route-namespace"),
|
||||||
|
gateways: []*v1beta1.Gateway{
|
||||||
|
{
|
||||||
|
ObjectMeta: metav1.ObjectMeta{
|
||||||
|
Name: "overriden-gateway",
|
||||||
|
Namespace: "gateway-namespace",
|
||||||
|
Annotations: map[string]string{
|
||||||
|
targetAnnotationKey: "4.3.2.1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Spec: v1beta1.GatewaySpec{
|
||||||
|
Listeners: []v1beta1.Listener{{
|
||||||
|
Protocol: v1beta1.HTTPProtocolType,
|
||||||
|
AllowedRoutes: allowAllNamespaces,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
Status: gatewayStatus("1.2.3.4"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ObjectMeta: objectMeta("gateway-namespace", "test"),
|
||||||
|
Spec: v1beta1.GatewaySpec{
|
||||||
|
Listeners: []v1beta1.Listener{{
|
||||||
|
Protocol: v1beta1.HTTPProtocolType,
|
||||||
|
AllowedRoutes: allowAllNamespaces,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
Status: gatewayStatus("2.3.4.5"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
routes: []*v1beta1.HTTPRoute{{
|
||||||
|
ObjectMeta: objectMeta("route-namespace", "test"),
|
||||||
|
Spec: v1beta1.HTTPRouteSpec{
|
||||||
|
Hostnames: hostnames("test.example.internal"),
|
||||||
|
},
|
||||||
|
Status: httpRouteStatus( // The route is attached to both gateways.
|
||||||
|
gatewayParentRef("gateway-namespace", "overriden-gateway"),
|
||||||
|
gatewayParentRef("gateway-namespace", "test"),
|
||||||
|
),
|
||||||
|
}},
|
||||||
|
endpoints: []*endpoint.Endpoint{
|
||||||
|
newTestEndpoint("test.example.internal", "A", "4.3.2.1", "2.3.4.5"),
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
tt := tt
|
tt := tt
|
||||||
|
Loading…
Reference in New Issue
Block a user