53a2064004711e77f9c5982b1a0926f9ea05d7dd
[aai/oom.git] / components / aai-search-data / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Default values for search-data.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20
21
22 # application image
23 repository: nexus3.onap.org:10001
24 image: onap/search-data-service:1.6.2
25 pullPolicy: Always
26 restartPolicy: Always
27 flavor: small
28 # application configuration
29 config:
30   elasticsearchHttpPort: 9200
31   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
32   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33   trustStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34
35 # default number of instances
36 replicaCount: 1
37
38 nodeSelector: {}
39
40 affinity: {}
41
42 # probe configuration parameters
43 liveness:
44   initialDelaySeconds: 10
45   periodSeconds: 10
46   # necessary to disable liveness probe when setting breakpoints
47   # in debugger so K8s doesn't restart unresponsive container
48   enabled: true
49
50 readiness:
51   initialDelaySeconds: 10
52   periodSeconds: 10
53
54 service:
55   type: ClusterIP
56   portName: aai-search-data
57   internalPort: 9509
58
59 ingress:
60   enabled: false
61
62 resources:
63   small:
64     limits:
65       cpu: 2
66       memory: 4Gi
67     requests:
68       cpu: 0.25
69       memory: 750Mi
70   large:
71     limits:
72       cpu: 4
73       memory: 8Gi
74     requests:
75       cpu: 0.5
76       memory: 1Gi
77   unlimited: {}