blob: a950750f850541dc521b73b5b0089f1cfafc2885 [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
Geora Barsky417b3b42018-08-17 13:31:36 -04006
7
8# application image
Michael O'Brien294fade2019-05-13 14:46:18 -04009image: onap/search-data-service:1.3.1
Geora Barsky417b3b42018-08-17 13:31:36 -040010pullPolicy: Always
11restartPolicy: Always
12
13# application configuration
14config:
15 elasticsearchHttpPort: 9200
16 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
17 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
18
19
20# default number of instances
21replicaCount: 1
22
23nodeSelector: {}
24
25affinity: {}
26
27# probe configuration parameters
28liveness:
jmac15bf8cd2019-02-05 19:44:55 +000029 initialDelaySeconds: 30
Geora Barsky417b3b42018-08-17 13:31:36 -040030 periodSeconds: 10
31 # necessary to disable liveness probe when setting breakpoints
32 # in debugger so K8s doesn't restart unresponsive container
33 enabled: true
34
35readiness:
jmac15bf8cd2019-02-05 19:44:55 +000036 initialDelaySeconds: 30
Geora Barsky417b3b42018-08-17 13:31:36 -040037 periodSeconds: 10
38
39service:
40 type: ClusterIP
41 portName: pomba-search-data
42 internalPort: 9509
43
44ingress:
45 enabled: false
46
jmacaf645b52018-10-11 12:21:54 +000047# Resource Limit flavor -By Default using small
48flavor: small
49# Segregation for Different environment (Small and Large)
50resources:
51 small:
52 limits:
53 cpu: 1
54 memory: 1800Mi
55 requests:
56 cpu: 50m
57 memory: 900Mi
58 large:
59 limits:
60 cpu: 2
61 memory: 3600Mi
62 requests:
63 cpu: 100m
64 memory: 1800Mi
Michael O'Brien294fade2019-05-13 14:46:18 -040065 unlimited: {}