Please enter search query.
Search <book_title>...
Veritas InfoScale™ for Kubernetes Environments 8.0.200 - Linux
Last Published:
2023-02-21
Product(s):
InfoScale & Storage Foundation (8.0.200)
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
Static provisioning of an existing snapshot
To perform static Provisioning of an existing snapshot:
- You must be ready with the VxVM volume name to define the Persistent Volume object.
Run
oc exec -ti -n <namespace> <driver-container> -- <cmd>
to list Volumes from the InfoScale Driver Container. You have to specify a Volume for snapshotHandle in csi-static-snapshot-content.yaml.
An example of this command is
oc exec -ti -n infoscale-vtas infoscale-vtas-driver-container-rhel8-bwvwb -- vxprint -g vrts_kube_dg -vuh | grep -w fsgen
- Define the volume snapshot content object using the yaml file and specify the snapshotHandle.
csi-static-snapshot-content.yaml --- apiVersion: snapshot.storage.k8s.io/v1beta1 kind: VolumeSnapshotContent metadata: name: csi-static-snapshot-content spec: deletionPolicy: Retain driver: org.veritas.infoscale source: # Provide pre-provisioned Infoscale snapshot volume name snapshotHandle: testSnapVol volumeSnapshotRef: name: csi-static-snapshot namespace: default
- Define the volume snapshot object using the yaml and specify the volumeSnapshotContentName.
csi-static-snapshot.yaml --- apiVersion: snapshot.storage.k8s.io/v1beta1 kind: VolumeSnapshot metadata: name: csi-static-snapshot spec: volumeSnapshotClassName: csi-infoscale-snapclass source: volumeSnapshotContentName: csi-static-snapshot-content
- Create Volume Snapshot
oc create -f csi-static-snapshot.yaml
On successful creation of VolumeSnapshot object, the corresponding volume snapshot content is bound to the volume Snapshot object.