Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 997 for kubetest (0.14 sec)

  1. pkg/kubelet/types/types.go

    	// Kubernetes represents resources reserved for kubernetes system components.
    	Kubernetes v1.ResourceList
    }
    
    // ResolvedPodUID is a pod UID which has been translated/resolved to the representation known to kubelets.
    type ResolvedPodUID types.UID
    
    // MirrorPodUID is a pod UID for a mirror pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    }
    
    // KubeletVersions gets the versions of the kubelets in the cluster.
    func (g *KubeVersionGetter) KubeletVersions() (map[string][]string, error) {
    	nodes, err := g.client.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		return nil, errors.New("couldn't list all nodes in cluster")
    	}
    
    	// map kubelet version to a list of node names
    	kubeletVersions := make(map[string][]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/conversion.go

    // or the original annotations if no init container annotations were present.
    //
    // this can be removed once no clients prior to 1.8 are supported, and no kubelets prior to 1.8 can be run
    // (we don't support kubelets older than 2 versions skewed from the apiserver, but we don't prevent them, either)
    func dropInitContainerAnnotations(oldAnnotations map[string]string) map[string]string {
    	if len(oldAnnotations) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/controller/ttl/ttl_controller.go

    // The annotations are consumed by Kubelets as suggestions for how long
    // it can cache objects (e.g. secrets or config maps) before refetching
    // from apiserver again.
    //
    // TODO: This is a temporary workaround for the Kubelet not being able to
    // send "watch secrets attached to pods from my node" request. Once
    // sending such request will be possible, we will modify Kubelet to
    // use it and get rid of this controller completely.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. cluster/gce/config-default.sh

    STORAGE_BACKEND=${STORAGE_BACKEND:-}
    
    # Networking plugin specific settings.
    NETWORK_PROVIDER="${NETWORK_PROVIDER:-kubenet}" # none, kubenet
    
    # Network Policy plugin specific settings.
    NETWORK_POLICY_PROVIDER="${NETWORK_POLICY_PROVIDER:-none}" # calico
    
    export NON_MASQUERADE_CIDR="0.0.0.0/0"
    
    # How should the kubelet configure hairpin mode?
    HAIRPIN_MODE="${HAIRPIN_MODE:-hairpin-veth}" # promiscuous-bridge, hairpin-veth, none
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// disables kubelet from executing any attach/detach operations
    	EnableControllerAttachDetach bool
    	// protectKernelDefaults, if true, causes the Kubelet to error if kernel
    	// flags are not as it expects. Otherwise the Kubelet will attempt to modify
    	// kernel flags to match its expectation.
    	ProtectKernelDefaults bool
    	// If true, Kubelet creates the KUBE-IPTABLES-HINT chain in iptables as a hint to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"run","Test":"TestOutputWithSubtest/sub_test"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test","Output":"=== RUN   TestOutputWithSubtest/sub_test\n"}
    {"Action":"run","Test":"TestOutputWithSubtest/sub_test/sub2"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test/sub2","Output":"=== RUN   TestOutputWithSubtest/sub_test/sub2\n"}
    {"Action":"run","Test":"TestOutputWithSubtest/sub_test2"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Avoid overriding system and kubelet cgroups on GCI ([#35319](https://github.com/kubernetes/kubernetes/pull/35319), [@vishh](https://github.com/vishh))
            * Make the kubectl from k8s release the default on GCI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_volumes_linux_test.go

    		pods         []*v1.Pod
    		prepareFunc  func(kubelet *Kubelet) error
    		validateFunc func(kubelet *Kubelet) error
    		expectErr    bool
    	}{
    		"nothing-to-do": {},
    		"pods-dir-not-found": {
    			prepareFunc: func(kubelet *Kubelet) error {
    				return os.Remove(kubelet.getPodsDir())
    			},
    			expectErr: true,
    		},
    		"pod-doesnot-exist-novolume": {
    			prepareFunc: func(kubelet *Kubelet) error {
    				podDir := kubelet.getPodDir("pod1uid")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

          fi
    
        } >>"${TMP_DIR}"/kubelet.yaml
    
        # shellcheck disable=SC2024
        sudo -E "${GO_OUT}/kubelet" "${all_kubelet_flags[@]}" \
          --config="${TMP_DIR}"/kubelet.yaml >"${KUBELET_LOG}" 2>&1 &
        KUBELET_PID=$!
    
        # Quick check that kubelet is running.
        if [ -n "${KUBELET_PID}" ] && ps -p ${KUBELET_PID} > /dev/null; then
          echo "kubelet ( ${KUBELET_PID} ) is running."
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top