Please enter search query.
Search <book_title>...
Veritas InfoScale™ for Kubernetes Environments 8.0.220 - Linux
Last Published:
2023-10-16
Product(s):
InfoScale & Storage Foundation (8.0.220)
Platform: Linux
- 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
- Prerequisites
- Tagging the InfoScale images on Kubernetes
- Installing InfoScale on Kubernetes
- Configuring KMS-based Encryption on an OpenShift cluster
- 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
- Administering InfoScale on Containers
- Upgrading 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.