-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
63 lines (55 loc) · 1.15 KB
/
values.yaml
File metadata and controls
63 lines (55 loc) · 1.15 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
image:
repository: timothyjmiller/prisma-studio
tag: latest
pullPolicy: Always
replicaCount: 1
database:
type: postgresql
port: 5432
# The following configs accept the Container Env Spec form This applies for `host`, `user`, `name`, and `password`
# Using `password` as an example you can directly specify the value:
# password:
# value: ""
# Or we can specify the value from a secret or other reference points
# password:
# valueFrom:
# secretKeyRef:
# name: ""
# key: ""
host:
user:
name:
password:
# Health check configuration
healthCheck:
enabled: true
image:
repository: postgres
tag: 14-alpine
connectTimeout: 20
retryInterval: 5
maxRetries: 12
service:
type: ClusterIP
port: 5555
targetPort: 5555
protocol: TCP
resources:
requests:
cpu: 20m
memory: 55M
probes:
liveness:
path: /
initialDelaySeconds: 5
timeoutSeconds: 2
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readiness:
path: /
initialDelaySeconds: 2
timeoutSeconds: 2
periodSeconds: 5
successThreshold: 1
failureThreshold: 3