Skip to content

Commit

Permalink
Merge pull request #3419 from openshift-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…3409-to-release-4.15

[release-4.15] OCPBUGS-27076: availability-prober: wait for infrastructure name to be set
  • Loading branch information
openshift-merge-bot[bot] committed Jan 23, 2024
2 parents 89d701c + 7f1585b commit 7079912
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions availability-prober/availability_prober.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ func check(log logr.Logger, target *url.URL, requestTimeout time.Duration, sleep
log.Info("cluster infrastructure resource not yet available", "err", err)
continue
}
if clusterInfrastructure.Status.InfrastructureName == "" {
log.Info("cluster infrastructure name is not yet set")
continue
}
}

if waitForLabeledPodsGone != "" {
Expand Down

0 comments on commit 7079912

Please sign in to comment.