Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 931 for kubelet_ (0.3 sec)

  1. pkg/kubelet/server/server.go

    	kubeletconfiginternal "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	apisgrpc "k8s.io/kubernetes/pkg/kubelet/apis/grpc"
    	"k8s.io/kubernetes/pkg/kubelet/apis/podresources"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/prober"
    	servermetrics "k8s.io/kubernetes/pkg/kubelet/server/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    )
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/kubelet/kubelet_getters_test.go

    	got = kubelet.getPodsDir()
    	exp = filepath.Join(root, "pods")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodLogsDir()
    	assert.Equal(t, kubelet.podLogsDirectory, got)
    
    	got = kubelet.getPluginsDir()
    	exp = filepath.Join(root, "plugins")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPluginsRegistrationDir()
    	exp = filepath.Join(root, "plugins_registry")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPluginDir("foobar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_volumes_test.go

    		},
    	})
    
    	stopCh := runVolumeManager(kubelet)
    	defer close(stopCh)
    
    	kubelet.podManager.SetPods([]*v1.Pod{pod})
    
    	// Fake node status update
    	go simulateVolumeInUseUpdate(
    		v1.UniqueVolumeName("fake/fake-device"),
    		stopCh,
    		kubelet.volumeManager)
    
    	assert.NoError(t, kubelet.volumeManager.WaitForAttachAndMount(context.Background(), pod))
    
    	podVolumes := kubelet.volumeManager.GetMountedVolumesForPod(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/certificates_test.go

    			CertFile: "/cluster-signing-kubelet-serving/cert-file",
    			KeyFile:  "/cluster-signing-kubelet-serving/key-file",
    		},
    		KubeletClientSignerConfiguration: csrsigningconfig.CSRSigningConfiguration{
    			CertFile: "/cluster-signing-kubelet-client/cert-file",
    			KeyFile:  "/cluster-signing-kubelet-client/key-file",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    * Kubelet will set extended resource capacity to zero after it restarts. If the extended resource is exported by a device plugin, its capacity will change to a valid value after the device plugin re-connects with the Kubelet. If the extended resource is exported by an external component through direct node status capacity patching, the component should repatch the field after kubelet becomes ready again. During the time gap, pods previously...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin.go

    		klog.V(4).Info("Cast from VolumeHost to KubeletVolumeHost failed. Skipping CSINode initialization, not running on kubelet")
    		return nil
    	}
    	kubeClient := host.GetKubeClient()
    	if kubeClient == nil {
    		// Kubelet running in standalone mode. Skip CSINode initialization
    		klog.Warning("Skipping CSINode initialization, kubelet running in standalone mode")
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.13.md

    * kubelets are no longer allowed to delete their own Node API object. Prior to 1.11, in rare circumstances related to cloudprovider node ID changes, kubelets would attempt to delete/recreate their Node object at startup. Kubelets older than 1.11 are not supported running against a v1.13+ API server. If an unsupported legacy kubelet encounters this situation, a cluster admin can remove the Node object: ([#71021](htt...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  10. pkg/volume/util/subpath/subpath_linux.go

    // Given Subpath must have all paths with already resolved symlinks and with
    // paths relevant to kubelet (when it runs in a container).
    // This function is called also by NsEnterMounter. It works because
    // /var/lib/kubelet is mounted from the host into the container with Kubelet as
    // /var/lib/kubelet too.
    func prepareSubpathTarget(mounter mount.Interface, subpath Subpath) (bool, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
Back to top