Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RecursiveReadOnlyMounts (0.18 sec)

  1. pkg/kubelet/kubelet_pods.go

    		}
    		if rro && !utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    			return nil, cleanupAction, fmt.Errorf("recursive read-only mount needs feature gate %q to be enabled", features.RecursiveReadOnlyMounts)
    		}
    
    		mounts = append(mounts, kubecontainer.Mount{
    			Name:              mount.Name,
    			ContainerPath:     containerPath,
    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/apis/core/zz_generated.deepcopy.go

    func (in *NodeRuntimeHandlerFeatures) DeepCopyInto(out *NodeRuntimeHandlerFeatures) {
    	*out = *in
    	if in.RecursiveReadOnlyMounts != nil {
    		in, out := &in.RecursiveReadOnlyMounts, &out.RecursiveReadOnlyMounts
    		*out = new(bool)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *NodeRuntimeHandlerFeatures) DeepCopyInto(out *NodeRuntimeHandlerFeatures) {
    	*out = *in
    	if in.RecursiveReadOnlyMounts != nil {
    		in, out := &in.RecursiveReadOnlyMounts, &out.RecursiveReadOnlyMounts
    		*out = new(bool)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top