Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for makeBlockVolumes (0.43 sec)

  1. pkg/kubelet/kubelet_pods_linux_test.go

    		t.Run(name, func(t *testing.T) {
    			pod := v1.Pod{
    				Spec: v1.PodSpec{
    					HostNetwork: true,
    				},
    			}
    			blkutil := volumetest.NewBlockVolumePathHandler()
    			blkVolumes, err := kubelet.makeBlockVolumes(&pod, &tc.container, tc.podVolumes, blkutil)
    			// validate only the error if we expect an error
    			if tc.expectErr {
    				if err == nil || err.Error() != tc.expectedErrMsg {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    func (kl *Kubelet) makeBlockVolumes(pod *v1.Pod, container *v1.Container, podVolumes kubecontainer.VolumeMap, blkutil volumepathhandler.BlockVolumePathHandler) ([]kubecontainer.DeviceInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top