Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContainerFilesystems (0.15 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		InodesUsed: &runtimeapi.UInt64Value{Value: *imageFsInfo.Inodes},
    	}
    	imageFsInfoResponse := &runtimeapi.ImageFsInfoResponse{
    		ImageFilesystems:     []*runtimeapi.FilesystemUsage{imageFsInfoCRI},
    		ContainerFilesystems: []*runtimeapi.FilesystemUsage{imageFsInfoCRI},
    	}
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.KubeletSeparateDiskGC, true)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. pkg/kubelet/container/testing/fake_runtime.go

    	f.Lock()
    	defer f.Unlock()
    
    	f.CalledFunctions = append(f.CalledFunctions, "ImageFsInfo")
    	resp := &runtimeapi.ImageFsInfoResponse{
    		ImageFilesystems:     f.ImageFsStats,
    		ContainerFilesystems: f.ContainerFsStats,
    	}
    	return resp, f.Err
    }
    
    func (f *FakeStreamingRuntime) GetExec(_ context.Context, id kubecontainer.ContainerID, cmd []string, stdin, stdout, stderr, tty bool) (*url.URL, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top