-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
kubernetes-restore-to-s3.yaml
90 lines (87 loc) · 2.02 KB
/
kubernetes-restore-to-s3.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# IMPORTANT: Be sure to set the VERSION variable in the Job definition
# with the name of the backup file to be restored in S3
#
# WARNING: It is best practice to scale down your minecraft deployment
# to assure you have no server pods running before a restore. This is
# currenly a manual task.
---
apiVersion: v1
kind: Namespace
metadata:
name: minecraft
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: bds
namespace: minecraft
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
---
apiVersion: v1
kind: ConfigMap
metadata:
name: backup-to-s3-bedrock
namespace: minecraft
labels:
role: backup
data:
# https://github.com/flickerfly/docker-backup-to-s3/blob/master/README.md
CRON_SCHEDULE: '0 12 * * *'
S3_PATH: s3://mybucket/bedrock
AWS_DEFAULT_REGION: us-east-1
# Pass this to the S3 command
PARAMS: ""
PREFIX: bedrock
DATA_PATH: /data/
---
apiVersion: v1
kind: Secret
metadata:
name: backup-to-s3-bedrock
namespace: minecraft
labels:
role: backup
data:
# https://github.com/flickerfly/docker-backup-to-s3/blob/master/README.md
AES_PASSPHRASE: BASE64-ENCODED STRING
AWS_ACCESS_KEY_ID: BASE64-ENCODED STRING
AWS_SECRET_ACCESS_KEY: BASE64-ENCODED STRING
---
# Setup the jod to create a pod that will do the work.
apiVersion: batch/v1
kind: Job
metadata:
name: bds-restore
namespace: minecraft
labels:
role: restore
app: bedrock
spec:
template:
spec:
containers:
- name: restore-from-s3
image: jritchie/backup-to-s3
args:
- restore
volumeMounts:
- name: bds
mountPath: /data
envFrom:
- configMapRef:
name: backup-to-s3-bedrock
- secretRef:
name: backup-to-s3-bedrock
env:
- name: VERSION
value: bedrck-3020-05-28T15:33:49Z-example
restartPolicy: Never
volumes:
- name: bds
persistentVolumeClaim:
claimName: bds