Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for AllowVolumeExpansion (0.27 sec)

  1. pkg/apis/storage/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.MountOptions != nil {
    		in, out := &in.MountOptions, &out.MountOptions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.AllowVolumeExpansion != nil {
    		in, out := &in.AllowVolumeExpansion, &out.AllowVolumeExpansion
    		*out = new(bool)
    		**out = **in
    	}
    	if in.VolumeBindingMode != nil {
    		in, out := &in.VolumeBindingMode, &out.VolumeBindingMode
    		*out = new(VolumeBindingMode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// +listType=atomic
    	MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,5,opt,name=mountOptions"`
    
    	// allowVolumeExpansion shows whether the storage class allow volume expand.
    	// +optional
    	AllowVolumeExpansion *bool `json:"allowVolumeExpansion,omitempty" protobuf:"varint,6,opt,name=allowVolumeExpansion"`
    
    	// volumeBindingMode indicates how PersistentVolumeClaims should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// +listType=atomic
    	MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,5,opt,name=mountOptions"`
    
    	// allowVolumeExpansion shows whether the storage class allow volume expand
    	// +optional
    	AllowVolumeExpansion *bool `json:"allowVolumeExpansion,omitempty" protobuf:"varint,6,opt,name=allowVolumeExpansion"`
    
    	// volumeBindingMode indicates how PersistentVolumeClaims should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/generated.proto

      // mount of the PVs will simply fail if one is invalid.
      // +optional
      // +listType=atomic
      repeated string mountOptions = 5;
    
      // allowVolumeExpansion shows whether the storage class allow volume expand.
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // mount of the PVs will simply fail if one is invalid.
      // +optional
      // +listType=atomic
      repeated string mountOptions = 5;
    
      // allowVolumeExpansion shows whether the storage class allow volume expand
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"allowVolumeExpansion": "allowVolumeExpansion shows whether the storage class allow volume expand.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"allowVolumeExpansion": "allowVolumeExpansion shows whether the storage class allow volume expand",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1/generated.proto

      // e.g. ["ro", "soft"]. Not validated -
      // mount of the PVs will simply fail if one is invalid.
      // +optional
      repeated string mountOptions = 5;
    
      // allowVolumeExpansion shows whether the storage class allow volume expand.
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // e.g. ["ro", "soft"]. Not validated -
      // mount of the PVs will simply fail if one is invalid.
      // +optional
      repeated string mountOptions = 5;
    
      // allowVolumeExpansion shows whether the storage class allow volume expand
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. pkg/apis/storage/types.go

    	// PersistentVolumes of this storage class are created with
    	// +optional
    	MountOptions []string
    
    	// AllowVolumeExpansion shows whether the storage class allow volume expand
    	// If the field is nil or not set, it would amount to expansion disabled
    	// for all PVs created from this storageclass.
    	// +optional
    	AllowVolumeExpansion *bool
    
    	// VolumeBindingMode indicates how PersistentVolumeClaims should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top