-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
63 lines (53 loc) · 1.28 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
61
62
63
# Pod count.
min_replicas: 1
max_replicas: 1
# Quotas. Consider the replica count when setting it.
cpu_request: 60m
cpu_limit: 300m
memory_request: 760Mi
memory_limit: 850Mi
# Docker Repository path.
image:
#version: latest
version: latest
serviceName: "${service.name}"
servicePort: 8080
infraName: "${infra.name}"
environment: "${env.name}"
namespace: "${infra.kubernetes.namespace}"
tool_stack_id: "468a05ae-3de4-4fb6-916d-5673b8505152"
profile: "${infra.name}"
isMockEnable: "${serviceVariable.isMockEnable}"
jaasconfig: '${serviceVariable.jaasconfig}'
jksPassword: "${serviceVariable.jksPassword}"
artifact_management:
username: "${serviceVariable.artifactUsername}"
password: "${serviceVariable.artifactPassword}"
releasenumber: ${workflow.releaseNo}
# Env variables injected into the pod.
environment_variables:
# - name: Hello
# value: World
# Scaling.
service_port: 80
container_port: 8080
# Health check spec.
health_check:
liveness:
initialDelaySeconds: 240
httpGet:
scheme: HTTP
path: /actuator/health
port: 8080
httpGet:
scheme: HTTP
path: /actuator/info
port: 8080
timeoutSeconds: 5
readiness:
initialDelaySeconds: 240
httpGet:
scheme: HTTP
path: /actuator/health
port: 8080
timeoutSeconds: 5