Skip to content

Commit fd71d58

Browse files
committed
Allow pending network for internal publishing strategy
1 parent fcaa07d commit fd71d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/asset/installconfig/powervs/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ func (c *Client) GetDNSZones(ctx context.Context, publish types.PublishingStrate
425425
}
426426

427427
for _, zone := range listZonesResponse.Dnszones {
428-
if *zone.State == "ACTIVE" {
428+
if *zone.State == "ACTIVE" || *zone.State == "PENDING_NETWORK_ADD" {
429429
zoneStruct := DNSZoneResponse{
430430
Name: *zone.Name,
431431
ID: *zone.ID,

0 commit comments

Comments
 (0)