Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for lives (0.05 sec)

  1. pkg/proxy/metrics/metrics.go

    		},
    		[]string{"code"},
    	)
    
    	// ProxyLivezTotal is the number of returned HTTP Status for each
    	// livez probe.
    	ProxyLivezTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "proxy_livez_total",
    			Help:           "Cumulative proxy livez HTTP status",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"code"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    //     Default is "pv-recycler-".
    //  3. pod.Spec.ActiveDeadlineSeconds gives the recycler pod a maximum timeout
    //     before failing.  Recommended.  Default is 60 seconds.
    //
    // See HostPath and NFS for working recycler examples
    func NewPersistentVolumeRecyclerPodTemplate() *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// to set values and determine whether its allowed
    	AdmissionControl      admission.Interface
    	CorsAllowedOriginList []string
    	HSTSDirectives        []string
    	// FlowControl, if not nil, gives priority and fairness to request handling
    	FlowControl utilflowcontrol.Interface
    
    	EnableIndex     bool
    	EnableProfiling bool
    	DebugSocketPath string
    	EnableDiscovery bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/helpers_test.go

    func sortNFTablesTransaction(tx string) string {
    	lines := strings.Split(tx, "\n")
    
    	// strip blank lines and comments
    	for i := 0; i < len(lines); {
    		if lines[i] == "" || lines[i][0] == '#' {
    			lines = append(lines[:i], lines[i+1:]...)
    		} else {
    			i++
    		}
    	}
    
    	// sort remaining lines
    	sort.SliceStable(lines, func(i, j int) bool {
    		li := lines[i]
    		wi := strings.Split(li, " ")
    		lj := lines[j]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// Look for a Pod using pvc in the Informer's cache. If one is found the
    	// correct decision to keep pvc is taken without doing an expensive live
    	// list.
    	logger := klog.FromContext(ctx)
    	if inUse, err := c.askInformer(logger, pvc); err != nil {
    		// No need to return because a live list will follow.
    		logger.Error(err, "")
    	} else if inUse {
    		return true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet.go

    		&compbasemetrics.HistogramOpts{
    			Subsystem: metrics.KubeletSubsystem,
    			Name:      "certificate_manager_server_rotation_seconds",
    			Help:      "Histogram of the number of seconds the previous certificate lived before being rotated.",
    			Buckets: []float64{
    				60,        // 1  minute
    				3600,      // 1  hour
    				14400,     // 4  hours
    				86400,     // 1  day
    				604800,    // 1  week
    				2592000,   // 1  month
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/proxy/healthcheck/healthcheck_test.go

    	hs.SyncNode(makeNode(tweakDeleted()))
    	testHTTPHandler(hsTest, http.StatusOK, t)
    }
    
    type url string
    
    var (
    	healthzURL url = "/healthz"
    	livezURL   url = "/livez"
    )
    
    func testProxierHealthUpdater(hs *ProxierHealthServer, hsTest *serverTest, fakeClock *testingclock.FakeClock, t *testing.T) {
    	// Should return 200 "OK" by default.
    	testHTTPHandler(hsTest, http.StatusOK, t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

        exit 1
      fi
    fi
    
    # Enable GCE Alpha features.
    if [[ -n "${GCE_ALPHA_FEATURES:-}" ]]; then
      PROVIDER_VARS="${PROVIDER_VARS:-} GCE_ALPHA_FEATURES"
    fi
    
    # Disable Docker live-restore.
    if [[ -n "${DISABLE_DOCKER_LIVE_RESTORE:-}" ]]; then
      PROVIDER_VARS="${PROVIDER_VARS:-} DISABLE_DOCKER_LIVE_RESTORE"
    fi
    
    # Override default GLBC image
    if [[ -n "${GCE_GLBC_IMAGE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    // the compactor is stopped.
    func startCompactorOnce(c storagebackend.TransportConfig, interval time.Duration) (func(), error) {
    	compactorsMu.Lock()
    	defer compactorsMu.Unlock()
    
    	key := fmt.Sprintf("%v", c) // gives: {[server1 server2] keyFile certFile caFile}
    	if compactor, foundBefore := compactors[key]; !foundBefore || compactor.interval > interval {
    		compactorClient, err := newETCD3Client(c)
    		if err != nil {
    			return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. cluster/gce/windows/smoke-test.sh

      # curl-ing the metrics-server service results in a ServerProtocolViolation
      # ("The server committed a protocol violation. Section=ResponseStatusLine")
      # exception. Since we don't care about what the metrics-server actually gives
      # back to us, just that we can reach it, we check that we get the expected
      # exception code and not some other exception code.
      # TODO: it might be less fragile to check that we don't get the "Unable to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top