Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for volumeSnapshot (0.28 sec)

  1. pkg/controller/volume/persistentvolume/provision_test.go

    			initialVolumes:  novolumes,
    			expectedVolumes: novolumes,
    			initialClaims:   claimWithDataSource("test-snap", "VolumeSnapshot", "snapshot.storage.k8s.io", newClaimArray("claim11-25", "uid11-25", "1Gi", "", v1.ClaimPending, &classGold)),
    			expectedClaims:  claimWithDataSource("test-snap", "VolumeSnapshot", "snapshot.storage.k8s.io", newClaimArray("claim11-25", "uid11-25", "1Gi", "", v1.ClaimPending, &classGold)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pkg/api/persistentvolumeclaim/util_test.go

    		return &core.PersistentVolumeClaim{
    			Spec: core.PersistentVolumeClaimSpec{
    				DataSource: &core.TypedLocalObjectReference{
    					APIGroup: &apiGroup,
    					Kind:     "VolumeSnapshot",
    					Name:     "test_snapshot",
    				},
    			},
    		}
    	}
    
    	pvcInfo := []struct {
    		description string
    		pvc         func() *core.PersistentVolumeClaim
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    			})
    		}
    	}
    
    }
    
    var (
    	coreGroup    = ""
    	snapGroup    = "snapshot.storage.k8s.io"
    	genericGroup = "generic.storage.k8s.io"
    	pvcKind      = "PersistentVolumeClaim"
    	snapKind     = "VolumeSnapshot"
    	genericKind  = "Generic"
    	podKind      = "Pod"
    )
    
    func makeDataSource(apiGroup, kind, name string) *api.TypedLocalObjectReference {
    	return &api.TypedLocalObjectReference{
    		APIGroup: &apiGroup,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    function start-fluentd-resource-update {
      wait-for-apiserver-and-update-fluentd &
    }
    
    # VolumeSnapshot CRDs and controller are installed by cluster addon manager,
    # which may not be available at this point. Run this as a background process.
    function wait-for-volumesnapshot-crd-and-controller {
      # Wait until volumesnapshot CRDs and controller are in place.
      echo "Wait until volume snapshot CRDs are installed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    	successTestCases := []core.PersistentVolumeClaimSpec{
    		*testVolumeSnapshotDataSourceInSpec("test_snapshot", "VolumeSnapshot", "snapshot.storage.k8s.io"),
    	}
    	failedTestCases := []core.PersistentVolumeClaimSpec{
    		*testVolumeSnapshotDataSourceInSpec("", "VolumeSnapshot", "snapshot.storage.k8s.io"),
    		*testVolumeSnapshotDataSourceInSpec("test_snapshot", "", "snapshot.storage.k8s.io"),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Value of Filesystem is implied when not included in claim spec.
    	// +optional
    	VolumeMode *PersistentVolumeMode
    	// This field can be used to specify either:
    	// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)
    	// * An existing PVC (PersistentVolumeClaim)
    	// If the provisioner or an external controller can support the specified data source,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"dataSource":                "dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string volumeMode = 6;
    
      // dataSource field can be used to specify either:
      // * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)
      // * An existing PVC (PersistentVolumeClaim)
      // If the provisioner or an external controller can support the specified data source,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml"
            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	VolumeMode *PersistentVolumeMode `json:"volumeMode,omitempty" protobuf:"bytes,6,opt,name=volumeMode,casttype=PersistentVolumeMode"`
    	// dataSource field can be used to specify either:
    	// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)
    	// * An existing PVC (PersistentVolumeClaim)
    	// If the provisioner or an external controller can support the specified data source,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top