Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 700 for Healthy (0.23 sec)

  1. pkg/kubelet/metrics/collectors/volume_stats.go

    	volumeStatsHealthAbnormalDesc = metrics.NewDesc(
    		metrics.BuildFQName("", kubeletmetrics.KubeletSubsystem, kubeletmetrics.VolumeStatsHealthStatusAbnormalKey),
    		"Abnormal volume health status. The count is either 1 or 0. 1 indicates the volume is unhealthy, 0 indicates volume is healthy",
    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "")
    )
    
    type volumeStatsCollector struct {
    	metrics.BaseStableCollector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/probe/grpc/grpc.go

    		if ok {
    			switch stat.Code() {
    			case codes.Unimplemented:
    				klog.V(4).ErrorS(err, "server does not implement the grpc health protocol (grpc.health.v1.Health)", "addr", addr, "service", service)
    				return probe.Failure, fmt.Sprintf("error: this server does not implement the grpc health protocol (grpc.health.v1.Health): %s", stat.Message()), nil
    			case codes.DeadlineExceeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 19:28:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    	}
    	return nil
    }
    
    // NamedCheck returns a healthz checker for the given name and function.
    func NamedCheck(name string, check func(r *http.Request) error) HealthChecker {
    	return &healthzCheck{name, check}
    }
    
    // InstallHandler registers handlers for health checking on the path
    // "/healthz" to mux. *All handlers* for mux must be specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    		case <-discoverySyncedCh:
    		}
    
    		return nil
    	})
    	// we don't want to report healthy until we can handle all CRDs that have already been registered.  Waiting for the informer
    	// to sync makes sure that the lister will be valid before we begin.  There may still be races for CRDs added after startup,
    	// but we won't go healthy until we can handle the ones already present.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager.go

    	}
    
    	// Check if all the previously allocated devices are healthy
    	if !healthyDevices.IsSuperset(devices) {
    		return nil, fmt.Errorf("previously allocated devices are no longer healthy; cannot allocate unhealthy devices %s", resource)
    	}
    
    	// We handled the known error paths in scenario 3 (node reboot), so from now on we can fall back in a common path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/aggregator.go

    		},
    	}
    }
    
    // makeAPIServiceAvailableHealthCheck returns a healthz check that returns healthy
    // once all of the specified services have been observed to be available at least once.
    func makeAPIServiceAvailableHealthCheck(name string, apiServices []*v1.APIService, apiServiceInformer informers.APIServiceInformer) healthz.HealthChecker {
    	// Track the auto-registered API services that have not been observed to be available yet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    			})
    
    			healthy := erasureSetUpCount[poolIdx][setIdx].online >= poolWriteQuorums[poolIdx]
    			if !healthy {
    				storageLogIf(logger.SetReqInfo(ctx, reqInfo),
    					fmt.Errorf("Write quorum may be lost on pool: %d, set: %d, expected write quorum: %d",
    						poolIdx, setIdx, poolWriteQuorums[poolIdx]), logger.FatalKind)
    			}
    			result.Healthy = result.Healthy && healthy
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. tests/integration/operator/switch_cr_test.go

    			}
    		}
    		return errs.ToError()
    	}
    	scopes.Framework.Infof("waiting for IOP to become healthy")
    	err := retry.UntilSuccess(retryFunc, retry.Timeout(retryTimeOut), retry.Delay(retryDelay))
    	if err != nil {
    		return fmt.Errorf("istioOperator status is not healthy: %v", err)
    	}
    	return nil
    }
    
    func cleanupInClusterCRs(t framework.TestContext, cs cluster.Cluster) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/apply.go

    func runApply(flagSet *pflag.FlagSet, flags *applyFlags, args []string) error {
    
    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    	klog.V(1).Infoln("[upgrade/apply] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/apply] retrieving configuration from cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertThrows(IllegalStateException.class, () -> manager.startAsync().awaitHealthy());
        assertTrue(listener.stoppedCalled);
      }
    
      /**
       * This covers a bug where listener.healthy would get called when a single service failed during
       * startup (it occurred in more complicated cases also).
       */
      public void testFailStart_singleServiceCallsHealthy() {
        Service a = new FailStartService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top