Please enter search query.
Search <book_title>...
Veritas InfoScale™ for Kubernetes Environments 8.0.100 - Linux
Last Published:
2022-07-11
Product(s):
InfoScale & Storage Foundation (8.0.100)
- Overview
- System requirements
- Preparing to install InfoScale on Containers
- Installing Veritas InfoScale on OpenShift
- Installing InfoScale on a system with Internet connectivity
- Installing InfoScale in an air gapped system
- Installing Veritas InfoScale on Kubernetes
- Tech Preview: Configuring KMS-based Encryption on an OpenShift cluster
- Tech Preview: Configuring KMS-based Encryption on a Kubernetes cluster
- InfoScale CSI deployment in Container environment
- Dynamic provisioning
- Snapshot provisioning (Creating volume snapshots)
- Managing InfoScale volume snapshots with Velero
- Volume cloning
- Installing and configuring InfoScale DR Manager on OpenShift
- Installing and configuring InfoScale DR Manager on Kubernetes
- 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