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
Restoring a snapshot to new PVC
If you want to use and update a point-in-time copy of the application data, you can restore the snapshot of that application's persistent volume to a new persistent volume that represents the previous state described by the snapshot. To restore a volume from a snapshot, you must specify the name of the VolumeSnapshot object that you want to restore as the value of the dataSource attribute.
Note:
While restoring a snapshot or a clone to a new PVC, you must specify the exact same storage details as specified in the source PVC.
To restore a snapshot to a new PVC:
- Define a Persistent Volume Claim object using the yaml and specify the name of the VolumeSnapshot object that you want to restore in the dataSource attribute:
csi-dynamic-snapshot-restore.yaml --- kind: PersistentVolumeClaim apiVersion: v1 metadata: name: csi-infoscale-snapshot-restore spec: storageClassName: csi-infoscale-sc accessModes: - ReadWriteMany resources: requests: storage: 5Gi dataSource: name: csi-dynamic-snapshot kind: VolumeSnapshot apiGroup: snapshot.storage.k8s.io
- Create the Persistent Volume Claim.
oc create -f csi-dynamic-snapshot-restore.yaml