Skip to content

Commit

Permalink
Create configuration to create indexer snapshots (#1111)
Browse files Browse the repository at this point in the history
* Create configuration to create indexer snapshots
  • Loading branch information
gammazero authored Dec 8, 2022
1 parent 3c21c72 commit 08d08b8
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ resources:
- instances
- indexstar
- heyfil
- snapshots
images:
- name: storetheindex
newName: 407967248065.dkr.ecr.us-east-2.amazonaws.com/storetheindex/storetheindex # {"$imagepolicy": "storetheindex:storetheindex:name"}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshot
metadata:
name: dido-20221207
spec:
volumeSnapshotClassName: csi-aws-vsc
source:
persistentVolumeClaimName: dido-data
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshot
metadata:
name: kepa-20221207
spec:
volumeSnapshotClassName: csi-aws-vsc
source:
persistentVolumeClaimName: kepa-data
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

namespace: storetheindex

resources:
- dido-snapshot.yaml
- kepa-snapshot.yaml
- oden-snapshot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshot
metadata:
name: oden-20221207
spec:
volumeSnapshotClassName: csi-aws-vsc
source:
persistentVolumeClaimName: oden-data

0 comments on commit 08d08b8

Please sign in to comment.