-
Notifications
You must be signed in to change notification settings - Fork 0
/
override-values.yaml
67 lines (57 loc) · 1 KB
/
override-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
61
62
63
64
65
66
namespace: jenkins
app:
name: java-app-example
tag: v1
registry: taco-registry:5000/admin
deployment:
replicaCount: 3
resources:
limits:
cpu: 2000m
memory: 4096Mi
requests:
cpu: 2000m
memory: 4096Mi
env:
- name: DB_HOST
value: "ex-host"
- name: DB_PORT
value: "3306"
- name: REDIS_HOST
value: "ex-host"
- name: REDIS_PORT
value: "6379"
- name: STYLE
value: "red"
livenessProbe:
enabled: true
path: /health
port: 8080
initialDelaySeconds:
timeoutSeconds:
readinessProbe:
enabled: true
path: /health
port: 8080
initialDelaySeconds:
timeoutSeconds:
service:
enabled: true
type: NodePort
ports:
- name: http
port: 8080
targetPort: 8080
nodePort: 31111
hpa:
enabled: true
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 70
ingress:
enabled: false
annotations: {}
host: java.app.example
paths:
- path: /
port: 8080