Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 237 for unhealthy (0.15 sec)

  1. pkg/registry/core/pod/storage/eviction.go

    		// IsPodReady is the current implementation of IsHealthy
    		// If the pod is healthy, it should be guarded by the PDB.
    		if !podutil.IsPodReady(pod) {
    			if feature.DefaultFeatureGate.Enabled(features.PDBUnhealthyPodEvictionPolicy) {
    				if pdb.Spec.UnhealthyPodEvictionPolicy != nil && *pdb.Spec.UnhealthyPodEvictionPolicy == policyv1.AlwaysAllow {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1/types.go

    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional policies may be added in the future.
    	// Clients making eviction decisions should disallow eviction of unhealthy pods
    	// if they encounter an unrecognized policy in this field.
    	//
    	// This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/healthcheck.go

    func EtcdHealthCheck(data []byte) error {
    	obj := etcdHealth{}
    	if err := json.Unmarshal(data, &obj); err != nil {
    		return err
    	}
    	if obj.Health != "true" {
    		return fmt.Errorf("Unhealthy status: %s", obj.Health)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/kubelet/events/event.go

    )
    
    // Image manager event reason list
    const (
    	InvalidDiskCapacity = "InvalidDiskCapacity"
    	FreeDiskSpaceFailed = "FreeDiskSpaceFailed"
    )
    
    // Probe event reason list
    const (
    	ContainerUnhealthy    = "Unhealthy"
    	ContainerProbeWarning = "ProbeWarning"
    )
    
    // Pod worker event reason list
    const (
    	FailedSync = "FailedSync"
    )
    
    // Config event reason list
    const (
    	FailedValidation = "FailedValidation"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic_test.go

    	testPleg := newTestGenericPLEG()
    
    	// pleg should initially be unhealthy
    	pleg, _, clock := testPleg.pleg, testPleg.runtime, testPleg.clock
    	ok, _ := pleg.Healthy()
    	assert.False(t, ok, "pleg should be unhealthy")
    
    	// Advance the clock without any relisting.
    	clock.Step(time.Minute * 10)
    	ok, _ = pleg.Healthy()
    	assert.False(t, ok, "pleg should be unhealthy")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/endpoint_test.go

    	}
    
    	updated := []*pluginapi.Device{
    		{ID: "ADeviceId", Health: pluginapi.Unhealthy},
    		{ID: "AThirdDeviceId", Health: pluginapi.Healthy},
    		{ID: "AFourthDeviceId", Health: pluginapi.Healthy},
    	}
    
    	callbackCount := 0
    	callbackChan := make(chan int)
    	callback := func(n string, devices []pluginapi.Device) {
    		// Should be called twice:
    		// one for plugin registration, one for plugin update.
    		if callbackCount > 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional policies may be added in the future.
    	// Clients making eviction decisions should disallow eviction of unhealthy pods
    	// if they encounter an unrecognized policy in this field.
    	//
    	// This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Nil(err)
    
    	devs := []pluginapi.Device{
    		{ID: "Device1", Health: pluginapi.Healthy},
    		{ID: "Device2", Health: pluginapi.Healthy},
    		{ID: "Device3", Health: pluginapi.Unhealthy},
    	}
    	callback := testManager.genericDeviceUpdateCallback
    
    	// Adds three devices for resource1, two healthy and one unhealthy.
    	// Expects capacity for resource1 to be 2.
    	resourceName1 := "domain1.com/resource1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. docs/orchestration/kubernetes/README.md

    ## Monitoring MinIO in Kubernetes
    
    MinIO server exposes un-authenticated liveness endpoints so Kubernetes can natively identify unhealthy MinIO containers. MinIO also exposes Prometheus compatible data on a different endpoint to enable Prometheus users to natively monitor their MinIO deployments.
    
    ## Explore Further
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/pleg.go

    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    	// the relisting time, which can vary significantly. Set a conservative
    	// threshold to avoid flipping between healthy and unhealthy.
    	RelistThreshold time.Duration
    }
    
    const (
    	// ContainerStarted - event type when the new state of container is running.
    	ContainerStarted PodLifeCycleEventType = "ContainerStarted"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top