-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues.yaml
More file actions
69 lines (60 loc) · 1.59 KB
/
values.yaml
File metadata and controls
69 lines (60 loc) · 1.59 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
namespace: a8s-system
replicaCount: 1
image:
repository: public.ecr.aws/w5n9a2g2/a9s-ds-for-k8s/dev/backup-manager
tag: a8555999c8c6fd7a1544c599b47f458b172eb4ca
pullPolicy: IfNotPresent
kubeRbacProxyImage:
repository: quay.io/brancz/kube-rbac-proxy
tag: v0.16.0
pullPolicy: IfNotPresent
serviceAccount:
create: true
name: a8s-backup-manager-account
controllerConfig:
healthProbeBindAddress: :8081
metricsBindAddress: 127.0.0.1:8080
leaderElect: true
backupCredentialPath: /etc/backup-store-secrets
services:
metrics:
port: 8443
# Backup storage configuration - Configure S3/cloud storage for backups
backupStorageConfig:
# ConfigMap for backup store coordinates
configMap:
name: a8s-backup-store-config
# The actual backup storage configuration
config:
cloud_configuration:
provider: "AWS"
container: a8s-shared-backups
region: eu-central-1
# Secret for backup storage credentials
secret:
name: a8s-backup-storage-credentials
# Create the secret from these values (or provide externally)
create: true
# When create=true, provide credentials inline:
accessKeyId: "YOUR_AWS_ACCESS_KEY_ID"
secretAccessKey: "YOUR_AWS_SECRET_ACCESS_KEY"
encryptionPassword: "YOUR_ENCRYPTION_PASSWORD"
# When create=false, reference an existing secret
resources:
manager:
limits:
cpu: 150m
memory: 150Mi
requests:
cpu: 100m
memory: 100Mi
kubeRbacProxy:
limits:
cpu: 400m
memory: 128Mi
requests:
cpu: 5m
memory: 64Mi
nodeSelector: {}
tolerations: []
affinity: {}