Please enter search query.
Search <book_title>...
InfoScale™ 9.0 Support for Containers - Linux
Last Published:
2025-04-14
Product(s):
InfoScale & Storage Foundation (9.0)
Platform: Linux
- Overview
- System requirements
- Preparing to install InfoScale on Containers
- Installing Arctera InfoScale™ on OpenShift
- Installing Arctera InfoScale™ on Kubernetes
- InfoScale CSI deployment in Container environment
- Dynamic provisioning
- Snapshot provisioning (Creating volume snapshots)
- Managing InfoScale volume snapshots with Velero
- Volume cloning
- 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.