Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for UNHEALTHY (0.13 sec)

  1. samples/bookinfo/src/ratings/ratings.js

        // make the service unavailable once in 60 seconds
        setInterval(function () {
            unavailable = !unavailable
        }, 60000);
    }
    
    if (process.env.SERVICE_VERSION === 'v-unhealthy') {
        // make the service unavailable once in 15 minutes for 15 minutes.
        // 15 minutes is chosen since the Kubernetes's exponential back-off is reset after 10 minutes
        // of successful execution
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/proxy/healthcheck/proxier_health.go

    // ProxierHealthServer allows callers to:
    //  1. run a http server with /healthz and /livez endpoint handlers.
    //  2. update healthz timestamps before and after synchronizing dataplane.
    //  3. sync node status, for reporting unhealthy /healthz response
    //     if the node is marked for deletion by autoscaler.
    //  4. get proxy health by verifying that the delay between QueuedUpdate()
    //     calls and Updated() calls exceeded healthTimeout or not.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // 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".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top