Please enter search query.
 
              Search <book_title>...
            
 
          Veritas InfoScale™ 8.0 Support for Containers - Linux
                Last Published: 
				2021-12-21
                
              
              
                Product(s): 
				InfoScale & Storage Foundation (8.0)
                 
              
              
                Platform: Linux
              
            - Overview
 - System requirements
 - Preparing to install InfoScale on Containers
 - Installing Veritas InfoScale on OpenShift
 - Installing Veritas InfoScale on Kubernetes
 - InfoScale CSI deployment in Container environment
- CSI plugin deployment
 - Static provisioning
 - Dynamic provisioning
 - Resizing Persistent Volumes (CSI volume expansion)
 - Snapshot provisioning (Creating volume snapshots)
 - Managing InfoScale volume snapshots with Velero
 - Volume cloning
 - Using InfoScale with non-root containers
 - Using InfoScale in SELinux environments
 - CSI Drivers
 - Creating CSI Objects for OpenShift
 
 - Installing InfoScale DR on OpenShift
 - Installing InfoScale DR on Kubernetes
 - TECHNOLOGY PREVIEW: Disaster Recovery scenarios
 - Configuring InfoScale
 - Troubleshooting
 
Creating volume clones
The cloning feature enables you to specify an existing PVC as a dataSource while creating a new PVC. Prerequisites are as under:
The source PVC is bound and available for use
A valid Storage Class is available
The source PVC is created using the InfoScale CSI driver that supports volume cloning
To clone a PVC from an existing PVC:
- 	Identify the PVC that you want to clone. 
oc get pvc
 - 	Define the PersistentVolumeClaim object using the yaml and specify the name of the PVC object to use as source
csi-dynamic-volume-clone.yaml --- kind: PersistentVolumeClaim apiVersion: v1 metadata: name: csi-infoscale-volume-clone spec: storageClassName: csi-infoscale-sc accessModes: - ReadWriteMany resources: requests: storage: 5Gi dataSource: kind: PersistentVolumeClaim name: csi-infoscale-pvc - Create a volume clone
oc create -f csi-dynamic-volume-clone.yaml
On successful creation of a clone, it is pre-populated with the data from the specified PVC dataSource volume.