blob: f2c90632c22b256dab7d63d11804d34e9387f422 [file] [log] [blame]
Geora Barsky417b3b42018-08-17 13:31:36 -04001# Default values for search-data.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +02006 readinessImage: onap/oom/readiness:3.0.1
Geora Barsky417b3b42018-08-17 13:31:36 -04007
8
9# application image
10repository: nexus3.onap.org:10001
Michael O'Brien294fade2019-05-13 14:46:18 -040011image: onap/search-data-service:1.3.1
Geora Barsky417b3b42018-08-17 13:31:36 -040012pullPolicy: Always
13restartPolicy: Always
14
15# application configuration
16config:
17 elasticsearchHttpPort: 9200
18 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
19 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
20
21
22# default number of instances
23replicaCount: 1
24
25nodeSelector: {}
26
27affinity: {}
28
29# probe configuration parameters
30liveness:
jmac15bf8cd2019-02-05 19:44:55 +000031 initialDelaySeconds: 30
Geora Barsky417b3b42018-08-17 13:31:36 -040032 periodSeconds: 10
33 # necessary to disable liveness probe when setting breakpoints
34 # in debugger so K8s doesn't restart unresponsive container
35 enabled: true
36
37readiness:
jmac15bf8cd2019-02-05 19:44:55 +000038 initialDelaySeconds: 30
Geora Barsky417b3b42018-08-17 13:31:36 -040039 periodSeconds: 10
40
41service:
42 type: ClusterIP
43 portName: pomba-search-data
44 internalPort: 9509
45
46ingress:
47 enabled: false
48
jmacaf645b52018-10-11 12:21:54 +000049# Resource Limit flavor -By Default using small
50flavor: small
51# Segregation for Different environment (Small and Large)
52resources:
53 small:
54 limits:
55 cpu: 1
56 memory: 1800Mi
57 requests:
58 cpu: 50m
59 memory: 900Mi
60 large:
61 limits:
62 cpu: 2
63 memory: 3600Mi
64 requests:
65 cpu: 100m
66 memory: 1800Mi
Michael O'Brien294fade2019-05-13 14:46:18 -040067 unlimited: {}