6f2c033deccc90e5016ca7caa40aa30cc5b8f021
[aai/oom.git] / components / aai-babel / values.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 # Modifications Copyright © 2018 Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   loggingImage: beats/filebeat:5.5.0
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25
26 # application image
27 image: onap/babel:1.6.2
28
29 flavor: small
30
31 # application configuration
32 config:
33   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
35
36 # default number of instances
37 replicaCount: 1
38
39 nodeSelector: {}
40
41 affinity: {}
42
43 # probe configuration parameters
44 liveness:
45   initialDelaySeconds: 10
46   periodSeconds: 10
47   # necessary to disable liveness probe when setting breakpoints
48   # in debugger so K8s doesn't restart unresponsive container
49   enabled: false
50
51 readiness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54
55 service:
56   type: NodePort
57   portName: babel
58   externalPort: 9516
59   internalPort: 9516
60   nodePort: 79
61
62 ingress:
63   enabled: false
64   service:
65     - baseaddr: "aaibabel"
66       name: "aai-babel"
67       port: 9516
68   config:
69     ssl: "redirect"
70
71 resources:
72   small:
73     limits:
74       cpu: 2
75       memory: 4Gi
76     requests:
77       cpu: 0.5
78       memory: 1Gi
79   large:
80     limits:
81       cpu: 4
82       memory: 8Gi
83     requests:
84       cpu: 2
85       memory: 2Gi
86   unlimited: {}