Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for livez (0.11 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switch to using the new etcd endpoints introduced in 3.5.11 - /livez (for liveness probe) and /readyz (for readyness and startup probe). With this change it is no longer possible to deploy a custom etcd version older than 3.5.11 with kubeadm 1.31. If so, please upgrade. ([#124465](https://github.com/kubernetes/kube...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    }
    
    // reset fills state with the live variables from live.
    func (state *stateAtPC) reset(live abt.T) {
    	slots, registers := state.slots, state.registers
    	for i := range slots {
    		slots[i] = VarLoc{}
    	}
    	for i := range registers {
    		registers[i] = registers[i][:0]
    	}
    	for it := live.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		live := d.(*liveSlot)
    		slots[k] = live.VarLoc
    		if live.VarLoc.Registers == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    
    	// Second, update using the outdated originalPod as the suggestion. Return a conflict error when
    	// passed originalPod, and make sure that SimpleUpdate is called a second time after a live lookup
    	// with the value of updatedPod.
    	sawConflict := false
    	updatedPod2 := &example.Pod{}
    	err = store.GuaranteedUpdate(ctx, key, updatedPod2, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    		legacyregistry.RawMustRegister(metrics.NewGaugeFunc(
    			&metrics.GaugeOpts{
    				Subsystem: kubeletmetrics.KubeletSubsystem,
    				Name:      "certificate_manager_client_ttl_seconds",
    				Help: "Gauge of the TTL (time-to-live) of the Kubelet's client certificate. " +
    					"The value is in seconds until certificate expiry (negative if already expired). " +
    					"If client certificate is invalid or unused, the value will be +INF.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Configures the TCP/IP parameters to be in sync with the GCP recommendation.
    # Not setting these values correctly can cause network issues for connections
    # that live longer than 10 minutes.
    # See: https://cloud.google.com/compute/docs/troubleshooting/general-tips#idle-connections
    function Set-WindowsTCPParameters {
      Set-ItemProperty -Force -Confirm:$false -Path `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top