Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for VolumeNodeAffinity (0.57 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.VolumeNodeAffinity)(nil), (*core.VolumeNodeAffinity)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_VolumeNodeAffinity_To_core_VolumeNodeAffinity(a.(*v1.VolumeNodeAffinity), b.(*core.VolumeNodeAffinity), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Defaults to "" (volume's root).
      // SubPathExpr and SubPath are mutually exclusive.
      // +optional
      optional string subPathExpr = 6;
    }
    
    // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +featureGate=VolumeAttributesClass
    	// +optional
    	VolumeAttributesClassName *string
    }
    
    // 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
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "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: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. 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)
Back to top