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