We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f858e5 commit b0b9bbcCopy full SHA for b0b9bbc
pkg/diagnostics/cluster/registry.go
@@ -175,7 +175,8 @@ func (d *ClusterRegistry) Check() types.DiagnosticResult {
175
if service := d.getRegistryService(r); service != nil {
176
// Check that it actually has pod(s) selected and running
177
if runningPods := d.getRegistryPods(service, r); len(runningPods) == 0 {
178
- r.Error("DClu1001", nil, fmt.Sprintf(clRegNoRunningPods, registryName))
+ // not reporting an error here, if there are no running pods an error
179
+ // is reported by getRegistryPods
180
return r
181
} else if d.checkRegistryEndpoints(runningPods, r) { // Check that matching endpoint exists on the service
182
// attempt to create an imagestream and see if it gets the same registry service IP from the service cache
0 commit comments