config.yaml
1.58 KB
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
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: backup-secrets
annotations:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-6"
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: backup-secrets
annotations:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-6"
rules:
- apiGroups: [""] # "" indicates the core API group
resources: ["secrets"]
verbs: ["get", "create", "list", "patch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: backup-secrets
annotations:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-6"
subjects:
# You can specify more than one "subject"
- kind: ServiceAccount
name: backup-secrets
apiGroup: ""
roleRef:
kind: Role
name: backup-secrets
apiGroup: rbac.authorization.k8s.io
---
apiVersion: v1
kind: ConfigMap
metadata:
name: backup-secrets-config
annotations:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-6"
data:
S3_ENABLED: "true"
S3_REGION: "us-west-2"
S3_BUCKET: "brainfood-bikeshed"
S3_PREFIX: "um-adam/secret-backup"
KEEP_COUNT: "30"
SECRETS_TARBALL: ""
---
apiVersion: v1
kind: ConfigMap
metadata:
name: backup-secrets-scripts
annotations:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-6"
---
apiVersion: v1
kind: Secret
metadata:
name: backup-secrets-auth
annotations:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-6"
stringData:
AWS_ACCESS_KEY: "AKIAYF7A6NI4N2CAG6V4"
AWS_SECRET_ACCESS_KEY: "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"