Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RecursiveReadOnlyMounts (0.39 sec)

  1. pkg/apis/core/types.go

    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    type NodeRuntimeHandlerFeatures struct {
    	// RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    	RecursiveReadOnlyMounts *bool
    	// Reserved: UserNamespaces *bool
    }
    
    // NodeRuntimeHandler is a set of runtime handler information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    type NodeRuntimeHandlerFeatures struct {
    	// RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    	RecursiveReadOnlyMounts *bool `json:"recursiveReadOnlyMounts,omitempty" protobuf:"varint,1,opt,name=recursiveReadOnlyMounts"`
    	// Reserved: UserNamespaces *bool (varint 2, for consistency with CRI API)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    message NodeRuntimeHandlerFeatures {
      // RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
      // +featureGate=RecursiveReadOnlyMounts
      // +optional
      optional bool recursiveReadOnlyMounts = 1;
    }
    
    // A node selector represents the union of the results of one or more label queries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NodeRuntimeHandlerFeatures_To_core_NodeRuntimeHandlerFeatures(in *v1.NodeRuntimeHandlerFeatures, out *core.NodeRuntimeHandlerFeatures, s conversion.Scope) error {
    	out.RecursiveReadOnlyMounts = (*bool)(unsafe.Pointer(in.RecursiveReadOnlyMounts))
    	return nil
    }
    
    // Convert_v1_NodeRuntimeHandlerFeatures_To_core_NodeRuntimeHandlerFeatures is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_NodeRuntimeHandlerFeatures = map[string]string{
    	"":                        "NodeRuntimeHandlerFeatures is a set of runtime features.",
    	"recursiveReadOnlyMounts": "RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.",
    }
    
    func (NodeRuntimeHandlerFeatures) SwaggerDoc() map[string]string {
    	return map_NodeRuntimeHandlerFeatures
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top