Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for AllowVolumeExpansion (0.57 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/printers/internalversion/printers.go

    	if obj.VolumeBindingMode != nil {
    		volumeBindingMode = string(*obj.VolumeBindingMode)
    	}
    
    	allowVolumeExpansion := false
    	if obj.AllowVolumeExpansion != nil {
    		allowVolumeExpansion = *obj.AllowVolumeExpansion
    	}
    
    	row.Cells = append(row.Cells, name, provtype, reclaimPolicy, volumeBindingMode, allowVolumeExpansion,
    		translateTimestampSince(obj.CreationTimestamp))
    
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K 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