Skip to content

Commit 961a184

Browse files
Merge pull request openshift#8677 from AshwinHIBM/allow-pending-zones
OCPBUGS-36316: Power VS: Allow pending network for internal publishing strategy
2 parents baa6897 + fd71d58 commit 961a184

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)