[AAI] Reintegrate AAI OOM charts in main repo
[oom.git] / kubernetes / aai / 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 flavorOverride: small
29 # application configuration
30 config:
31   elasticsearchHttpPort: 9200
32   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34   trustStorePassword: 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: true
50
51 readiness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54
55 service:
56   type: ClusterIP
57   portName: aai-search-data
58   internalPort: 9509
59
60 ingress:
61   enabled: false
62
63 resources:
64   small:
65     limits:
66       cpu: 2
67       memory: 4Gi
68     requests:
69       cpu: 0.25
70       memory: 750Mi
71   large:
72     limits:
73       cpu: 4
74       memory: 8Gi
75     requests:
76       cpu: 0.5
77       memory: 1Gi
78   unlimited: {}