Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for RecursiveReadOnlyMounts (0.47 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/generated.pb.go

    }
    
    func (m *NodeRuntimeHandlerFeatures) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.RecursiveReadOnlyMounts != nil {
    		i--
    		if *m.RecursiveReadOnlyMounts {
    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x8
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

            "description": "NodeRuntimeHandlerFeatures is a set of runtime features.",
            "properties": {
              "recursiveReadOnlyMounts": {
                "description": "RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.",
                "type": "boolean"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.NodeSelector": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top