-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
60 lines (52 loc) · 1.08 KB
/
values.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
# Default values for tristian-id.
autoscaling:
enabled: true
minReplicas: 5
maxReplicas: 10
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
# Replica count if autoscaling disabled
replicaCount: 1
image:
repository: nonkronk/tristian-id
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
service:
type: ClusterIP
port: 3000
resources:
limits:
cpu: 150m
memory: 128M
requests:
cpu: 50m
memory: 80M
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: app-deployment
operator: In
values:
- "true"
- key: db-deplyoment
operator: NotIn
values:
- "true"
- key: monitoring-deployment
operator: NotIn
values:
- "true"
pdb:
minAvailable: 2
health-check:
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http