blob: 4bd535a4751f3ca5dbae48587a203b95ecf102af [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# Copyright © 2018 Amdocs, Bell Canada, AT&T
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01002# Modifications Copyright © 2020 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01003#
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# Default values for search-data.
17# This is a YAML-formatted file.
18# Declare variables to be passed into your templates.
19global: # global defaults
20 nodePortPrefix: 302
21
22
23# application image
Sylvain Desbureaux70070412020-11-09 21:58:48 +010024image: 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
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010058 internalPort: "9509"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010059
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: {}