Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / pomba / components / pomba-search-data / values.yaml
1 # Default values for search-data.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6
7
8 # application image
9 image: onap/search-data-service:1.3.1
10 pullPolicy: Always
11 restartPolicy: Always
12
13 # application configuration
14 config:
15   elasticsearchHttpPort: 9200
16   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
17   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
18
19
20 # default number of instances
21 replicaCount: 1
22
23 nodeSelector: {}
24
25 affinity: {}
26
27 # probe configuration parameters
28 liveness:
29   initialDelaySeconds: 30
30   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
35 readiness:
36   initialDelaySeconds: 30
37   periodSeconds: 10
38
39 service:
40   type: ClusterIP
41   portName: pomba-search-data
42   internalPort: 9509
43
44 ingress:
45   enabled: false
46
47 # Resource Limit flavor -By Default using small
48 flavor: small
49 # Segregation for Different environment (Small and Large)
50 resources:
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
65   unlimited: {}