Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for volumeLifecycleModes (1.11 sec)

  1. pkg/registry/storage/csidriver/strategy_test.go

    			Name: "foo",
    		},
    	}
    	driverWithPersistent := &storage.CSIDriver{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    		Spec: storage.CSIDriverSpec{
    			AttachRequired: &attachRequired,
    			VolumeLifecycleModes: []storage.VolumeLifecycleMode{
    				storage.VolumeLifecyclePersistent,
    			},
    		},
    	}
    	enabled := true
    	disabled := false
    	gcp := "gcp"
    	noneFsGroupPolicy := storage.NoneFSGroupPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation.go

    	allErrs = append(allErrs, apimachineryvalidation.ValidateImmutableField(new.Spec.VolumeLifecycleModes, old.Spec.VolumeLifecycleModes, field.NewPath("spec", "volumeLifecycleModes"))...)
    
    	return allErrs
    }
    
    // ValidateCSIDriverSpec tests that the specified CSIDriverSpec
    // has valid data.
    func validateCSIDriverSpec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	//
    	// This field is beta.
    	// This field is immutable.
    	//
    	// +optional
    	// +listType=set
    	VolumeLifecycleModes []VolumeLifecycleMode `json:"volumeLifecycleModes,omitempty" protobuf:"bytes,3,opt,name=volumeLifecycleModes"`
    
    	// storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage
    	// capacity that the driver deployment will report by creating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/generated.proto

      // via a command line parameter of the driver.
      //
      // This field was immutable in Kubernetes < 1.29 and now is mutable.
      //
      // +optional
      optional bool podInfoOnMount = 2;
    
      // volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
      // The default if the list is empty is "Persistent", which is the usage defined by the
    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

      // via a command line parameter of the driver.
      //
      // This field is immutable.
      //
      // +optional
      optional bool podInfoOnMount = 2;
    
      // volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
      // The default if the list is empty is "Persistent", which is the usage defined by the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1/generated.proto

      // via a command line parameter of the driver.
      //
      // This field is immutable.
      //
      // +optional
      optional bool podInfoOnMount = 2;
    
      // volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
      // The default if the list is empty is "Persistent", which is the usage defined by the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // via a command line parameter of the driver.
      //
      // This field is immutable.
      //
      // +optional
      optional bool podInfoOnMount = 2;
    
      // volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
      // The default if the list is empty is "Persistent", which is the usage defined by the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top