mirror of https://github.com/kubernetes/kops.git
Ignore blackhole NAT routes
This commit is contained in:
parent
e944836704
commit
c937ae11a6
|
|
@ -215,7 +215,7 @@ func findNatGatewayFromRouteTable(ctx context.Context, cloud awsup.AWSCloud, rou
|
||||||
var natGatewayIDs []*string
|
var natGatewayIDs []*string
|
||||||
natGatewayIDsSeen := map[string]bool{}
|
natGatewayIDsSeen := map[string]bool{}
|
||||||
for _, route := range rt.Routes {
|
for _, route := range rt.Routes {
|
||||||
if route.NatGatewayId != nil && !natGatewayIDsSeen[*route.NatGatewayId] {
|
if route.NatGatewayId != nil && route.State != ec2types.RouteStateBlackhole && !natGatewayIDsSeen[*route.NatGatewayId] {
|
||||||
natGatewayIDs = append(natGatewayIDs, route.NatGatewayId)
|
natGatewayIDs = append(natGatewayIDs, route.NatGatewayId)
|
||||||
natGatewayIDsSeen[*route.NatGatewayId] = true
|
natGatewayIDsSeen[*route.NatGatewayId] = true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue