Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for volumeSnapshot (0.21 sec)

  1. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

    ntentName is the name of the VolumeSnapshotContent object to which this VolumeSnapshot object intends to bind to. If not specified, it indicates that the VolumeSnapshot object has not been successfully bound to a VolumeSnapshotContent object yet. NOTE: To avoid possible security issues, consumers must verify binding between VolumeSnapshot and VolumeSnapshotContent objects is successful (by validating that both VolumeSnapshot and VolumeSnapshotContent point at each other) before using this object.'...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  2. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

              name: VolumeSnapshotClass
              type: string
            - description: Name of the VolumeSnapshot object to which this VolumeSnapshotContent
                object is bound.
              jsonPath: .spec.volumeSnapshotRef.name
              name: VolumeSnapshot
              type: string
            - description: Namespace of the VolumeSnapshot object to which this VolumeSnapshotContent object is bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
Back to top