Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for VolumeNodeAffinity (0.48 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    	return allErrs
    }
    
    // validateVolumeNodeAffinity tests that the PersistentVolume.NodeAffinity has valid data
    // returns:
    // - true if volumeNodeAffinity is set
    // - errorList if there are validation errors
    func validateVolumeNodeAffinity(nodeAffinity *core.VolumeNodeAffinity, fldPath *field.Path) (bool, field.ErrorList) {
    	allErrs := field.ErrorList{}
    
    	if nodeAffinity == nil {
    		return false, allErrs
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // depending on the mount result.
      // +featureGate=RecursiveReadOnlyMounts
      // +optional
      optional string recursiveReadOnly = 4;
    }
    
    // VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.
    message VolumeNodeAffinity {
      // required specifies hard node constraints that must be met.
      optional NodeSelector required = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	VolumeAttributesClassName *string `json:"volumeAttributesClassName,omitempty" protobuf:"bytes,10,opt,name=volumeAttributesClassName"`
    }
    
    // VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.
    type VolumeNodeAffinity struct {
    	// required specifies hard node constraints that must be met.
    	Required *NodeSelector `json:"required,omitempty" protobuf:"bytes,1,opt,name=required"`
    }
    
    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/types_swagger_doc_generated.go

    	return map_VolumeMountStatus
    }
    
    var map_VolumeNodeAffinity = map[string]string{
    	"":         "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
    	"required": "required specifies hard node constraints that must be met.",
    }
    
    func (VolumeNodeAffinity) SwaggerDoc() map[string]string {
    	return map_VolumeNodeAffinity
    }
    
    var map_VolumeProjection = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/api__v1_openapi.json

              }
            },
            "required": [
              "name",
              "mountPath"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.VolumeNodeAffinity": {
            "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
            "properties": {
              "required": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/core/v1.VolumeMountStatus":                                                                  schema_k8sio_api_core_v1_VolumeMountStatus(ref),
    		"k8s.io/api/core/v1.VolumeNodeAffinity":                                                                 schema_k8sio_api_core_v1_VolumeNodeAffinity(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

            }
          },
          "required": [
            "name",
            "mountPath"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.VolumeNodeAffinity": {
          "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
          "properties": {
            "required": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top