Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for UNHEALTHY (0.14 sec)

  1. 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)
  2. 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)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

        /**
         * @return true if daemon is single use daemon, false otherwise
         */
        boolean isSingleUse();
    
        /**
         * Invokes the given action when the Daemon becomes unhealthy in way that requires it be terminated at the end of the build.
         * <p>
         * The action will be invoked at-most once during a build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types.go

    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,3,opt,name=maxUnavailable"`
    
    	// UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
    	// should be considered for eviction. Current implementation considers healthy pods,
    	// as pods that have status.conditions item with type="Ready",status="True".
    	//
    	// Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/eviction.go

    					// Delete the unhealthy pod, it doesn't count towards currentHealthy and desiredHealthy and we should not decrement disruptionsAllowed.
    					updateDeletionOptions = true
    					return nil
    				}
    			}
    			// default nil and IfHealthyBudget policy
    			if pdb.Status.CurrentHealthy >= pdb.Status.DesiredHealthy && pdb.Status.DesiredHealthy > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/LogAndCheckHealth.java

                logger.info(getStartBuildMessage());
            }
    
            execution.proceed();
    
            // Execute the health check that should send out a DaemonExpiration event
            // if the daemon is unhealthy
            healthCheck.executeHealthCheck();
        }
    
        private String getStartBuildMessage() {
            int nextBuildNum = runningStats.getBuildCount() + 1;
            if (nextBuildNum == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/endpoint_test.go

    	devs := []*pluginapi.Device{
    		{ID: "ADeviceId", Health: pluginapi.Healthy},
    		{ID: "AnotherDeviceId", Health: pluginapi.Healthy},
    		{ID: "AThirdDeviceId", Health: pluginapi.Unhealthy},
    	}
    
    	updated := []*pluginapi.Device{
    		{ID: "ADeviceId", Health: pluginapi.Unhealthy},
    		{ID: "AThirdDeviceId", Health: pluginapi.Healthy},
    		{ID: "AFourthDeviceId", Health: pluginapi.Healthy},
    	}
    
    	callbackCount := 0
    	callbackChan := make(chan int)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	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"
    	e1 := &endpointImpl{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,3,opt,name=maxUnavailable"`
    
    	// UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
    	// should be considered for eviction. Current implementation considers healthy pods,
    	// as pods that have status.conditions item with type="Ready",status="True".
    	//
    	// Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top