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
Dynamic provisioning of a snapshot
To perform Dynamic provisioning of a snapshot:
- Define the VolumeSnapshotClass object using the yaml and specify the deletionPolicy and snapType.
csi-infoscale-snapclass.yaml --- apiVersion: snapshot.storage.k8s.io/v1beta1 kind: VolumeSnapshotClass metadata: name: csi-infoscale-snapclass annotations: snapshot.storage.kubernetes.io/is-default-class: "true" driver: org.veritas.infoscale deletionPolicy: Delete #parameters: # (optional) Specifies the type of the snapshot to be created. # If omitted, by default creates space-optimized snapshot. # Supported values: space-optimized, full-instant # snapType: space-optimized # (optional) Specifies the size of the cache volume to be created for space-optimized snapshots. # If omitted, InfoScale internally chooses the cacheSize as 30% of orignial volume size. # cacheSize: 500m
- Create Volume Snapshot Class
oc create -f csi-infoscale-snapclass.yaml
- Define the Volume Snapshot.
csi-dynamic-snapshot.yaml --- apiVersion: snapshot.storage.k8s.io/v1beta1 kind: VolumeSnapshot metadata: name: csi-dynamic-snapshot spec: volumeSnapshotClassName: csi-infoscale-snapclass source: persistentVolumeClaimName: csi-infoscale-pvc
- Create Volume Snapshot
oc create -f csi-dynamic-snapshot.yaml
- On successful creation of a snapshot, the corresponding volume snapshot content is created and bound to the volume Snapshot object.