Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for volumeSnapshot (0.17 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. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

            - jsonPath: .driver
              name: Driver
              type: string
            - description: Determines whether a VolumeSnapshotContent created through the
                VolumeSnapshotClass should be deleted when its bound VolumeSnapshot is deleted.
              jsonPath: .deletionPolicy
              name: DeletionPolicy
              type: string
            - jsonPath: .metadata.creationTimestamp
              name: Age
              type: date
          name: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. pkg/api/persistentvolumeclaim/util.go

    	"k8s.io/kubernetes/pkg/apis/core/helper"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	pvc                                  string = "PersistentVolumeClaim"
    	volumeSnapshot                       string = "VolumeSnapshot"
    	deprecatedStorageClassAnnotationsMsg        = `deprecated since v1.8; use "storageClassName" attribute instead`
    )
    
    // DropDisabledFields removes disabled fields from the pvc spec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/registry/core/persistentvolumeclaim/strategy.go

    	pvcutil.DropDisabledFields(&pvc.Spec, nil)
    
    	// For data sources, we need to do 2 things to implement KEP 1495
    
    	// First drop invalid values from spec.dataSource (anything other than PVC or
    	// VolumeSnapshot) if certain conditions are met.
    	pvcutil.EnforceDataSourceBackwardsCompatibility(&pvc.Spec, nil)
    
    	// Second copy dataSource -> dataSourceRef or dataSourceRef -> dataSource if one of them
    	// is nil and the other is non-nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 20:58:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top