Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for volumeSnapshot (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cluster/addons/volumesnapshots/volume-snapshot-controller/rbac-volume-snapshot-controller.yaml

        verbs: ["create", "get", "list", "watch", "update", "delete", "patch"]
      - apiGroups: ["snapshot.storage.k8s.io"]
        resources: ["volumesnapshots"]
        verbs: ["get", "list", "watch", "update", "patch"]
      - apiGroups: ["snapshot.storage.k8s.io"]
        resources: ["volumesnapshots/status"]
        verbs: ["update", "patch"]
      - apiGroups: ["snapshot.storage.k8s.io"]
        resources: ["volumesnapshotcontents/status"]
        verbs: ["patch"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 14:09:47 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top