blob: a8089d6c165b258c9d51bb13ee8a6cce20a6012a [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# 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.
18global: # global defaults
19 nodePortPrefix: 302
20
21
22# application image
23repository: nexus3.onap.org:10001
24image: onap/search-data-service:1.6.2
25pullPolicy: Always
26restartPolicy: Always
27flavor: small
28flavorOverride: small
29# application configuration
30config:
31 elasticsearchHttpPort: 9200
32 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34 trustStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
35
36# default number of instances
37replicaCount: 1
38
39nodeSelector: {}
40
41affinity: {}
42
43# probe configuration parameters
44liveness:
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
51readiness:
52 initialDelaySeconds: 10
53 periodSeconds: 10
54
55service:
56 type: ClusterIP
57 portName: aai-search-data
58 internalPort: 9509
59
60ingress:
61 enabled: false
62
63resources:
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: {}