blob: 6a3659e82d354d98d8e1aa78db04bf87ed038cfe [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
6 readinessRepository: oomk8s
7 readinessImage: readiness-check:2.0.0
8
9
10# application image
11repository: nexus3.onap.org:10001
Gary Wubc1e7312018-10-18 09:48:31 -070012image: onap/search-data-service:1.3.1
Geora Barsky417b3b42018-08-17 13:31:36 -040013pullPolicy: Always
14restartPolicy: Always
15
16# application configuration
17config:
18 elasticsearchHttpPort: 9200
19 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
20 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
21
22
23# default number of instances
24replicaCount: 1
25
26nodeSelector: {}
27
28affinity: {}
29
30# probe configuration parameters
31liveness:
32 initialDelaySeconds: 10
33 periodSeconds: 10
34 # necessary to disable liveness probe when setting breakpoints
35 # in debugger so K8s doesn't restart unresponsive container
36 enabled: true
37
38readiness:
39 initialDelaySeconds: 10
40 periodSeconds: 10
41
42service:
43 type: ClusterIP
44 portName: pomba-search-data
45 internalPort: 9509
46
47ingress:
48 enabled: false
49
jmacaf645b52018-10-11 12:21:54 +000050# Resource Limit flavor -By Default using small
51flavor: small
52# Segregation for Different environment (Small and Large)
53resources:
54 small:
55 limits:
56 cpu: 1
57 memory: 1800Mi
58 requests:
59 cpu: 50m
60 memory: 900Mi
61 large:
62 limits:
63 cpu: 2
64 memory: 3600Mi
65 requests:
66 cpu: 100m
67 memory: 1800Mi
68 unlimited: {}