Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for UNHEALTHY (0.32 sec)

  1. pkg/kubelet/kubelet.go

    		handler.HandlePodSyncs(podsToSync)
    	case update := <-kl.livenessManager.Updates():
    		if update.Result == proberesults.Failure {
    			handleProbeSync(kl, update, handler, "liveness", "unhealthy")
    		}
    	case update := <-kl.readinessManager.Updates():
    		ready := update.Result == proberesults.Success
    		kl.statusManager.SetContainerReadiness(update.PodUID, update.ContainerID, ready)
    
    		status := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			},
    			expectedLbPolicy:                   cluster.Cluster_CLUSTER_PROVIDED,
    			expectClusterLoadAssignmenttoBeNil: true,
    		},
    		{
    			name:                   "Send Unhealthy Endpoints enabled",
    			discoveryType:          cluster.Cluster_EDS,
    			sendUnhealthyEndpoints: true,
    			expectedLbPolicy:       defaultLBAlgorithm(),
    		},
    		// TODO: add more to cover all cases
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    				adminLogIf(ctx, nerr.Err)
    				errCount++
    			}
    		}
    		if errCount == len(nerrs) {
    			return madmin.BgHealState{}, fmt.Errorf("all remote servers failed to report heal status, cluster is unhealthy")
    		}
    		bgHealStates.Merge(peersHealStates...)
    	}
    
    	return bgHealStates, nil
    }
    
    func (a adminAPIHandlers) BackgroundHealStatusHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	error := ""
    	for _, condition := range obj.Conditions {
    		if condition.Type == api.ComponentHealthy {
    			if condition.Status == api.ConditionTrue {
    				status = "Healthy"
    			} else {
    				status = "Unhealthy"
    			}
    			message = condition.Message
    			error = condition.Error
    			break
    		}
    	}
    	row.Cells = append(row.Cells, obj.Name, status, message, error)
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    						Message: "test message",
    						Error:   "test error",
    					},
    				},
    			},
    			// Columns: Name, Status, Message, Error
    			expected: []metav1.TableRow{{Cells: []interface{}{"cs3", "Unhealthy", "test message", "test error"}}},
    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printComponentStatus(&test.componentStatus, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatal(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top