-
Notifications
You must be signed in to change notification settings - Fork 1
/
postgres.yaml
88 lines (88 loc) · 2.01 KB
/
postgres.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
apiVersion: sql.tanzu.vmware.com/v1
kind: Postgres
metadata:
labels:
app: postgres
postgres-instance: zen-db
name: zen-db
namespace: team-tanzu
spec:
cpu: 800m
dataPodConfig:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: type
operator: In
values:
- data
- monitor
- key: postgres-instance
operator: In
values:
- account-db
topologyKey: kubernetes.io/hostname
weight: 100
deploymentOptions:
continuousRestoreTarget: false
highAvailability: {}
imagePullSecret:
name: registry-credentials
memory: 800Mi
monitorPodConfig:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: type
operator: In
values:
- data
- monitor
- key: postgres-instance
operator: In
values:
- account-db
topologyKey: kubernetes.io/hostname
weight: 100
monitorStorageSize: 1G
persistentVolumeClaimPolicy: delete
pgConfig:
appUser: pgappuser
dbname: account-db
readOnlyUser: pgrouser
readWriteUser: pgrwuser
username: pgadmin
postgresVersion:
name: postgres-14
resources:
data:
limits:
cpu: 800m
memory: 800Mi
requests:
cpu: 800m
memory: 800Mi
metrics:
limits:
cpu: 100m
memory: 100Mi
requests:
cpu: 100m
memory: 100Mi
monitor:
limits:
cpu: 800m
memory: 800Mi
requests:
cpu: 800m
memory: 800Mi
seccompProfile:
type: RuntimeDefault
serviceType: ClusterIP
storageSize: 1Gi