config.yaml 1.58 KB
---
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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"