88f45e35c27b309d70cd1a88b3a139a6b27e537f
[oom.git] / kubernetes / pomba / charts / 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   readinessRepository: oomk8s
7   readinessImage: readiness-check:2.0.0
8
9
10 # application image
11 repository: nexus3.onap.org:10001
12 image: onap/search-data-service:1.3.1
13 pullPolicy: Always
14 restartPolicy: Always
15
16 # application configuration
17 config:
18   elasticsearchHttpPort: 9200
19   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
20   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
21
22
23 # default number of instances
24 replicaCount: 1
25
26 nodeSelector: {}
27
28 affinity: {}
29
30 # probe configuration parameters
31 liveness:
32   initialDelaySeconds: 30
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
38 readiness:
39   initialDelaySeconds: 30
40   periodSeconds: 10
41
42 service:
43   type: ClusterIP
44   portName: pomba-search-data
45   internalPort: 9509
46
47 ingress:
48   enabled: false
49
50 # Resource Limit flavor -By Default using small
51 flavor: small
52 # Segregation for Different environment (Small and Large)
53 resources:
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: {}