Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Implementation (0.23 sec)

  1. pkg/kubelet/kubelet_pods.go

    		if !ok {
    			// In fact, we could also apply Waiting state here, but it is less informative,
    			// and the container will be restarted soon, so we prefer the original state here.
    			// Note that with the current implementation of ShouldContainerBeRestarted the original state here
    			// could be:
    			//   * Waiting: There is no associated historical container and start failure reason record.
    			//   * Terminated: The container is terminated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
          # Pass --conntrack-tcp-be-liberal so we can test that this makes the
          # "proxy implementation should not be vulnerable to the invalid conntrack state bug"
          # test pass. https://issues.k8s.io/122663#issuecomment-1885024015
          params+=" --proxy-mode=nftables --conntrack-tcp-be-liberal"
          ;;
      esac
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top