blob: 2c3a005db950e917b6cab4263a611b82db5285a1 [file] [log] [blame]
kj6a8ce802018-03-19 15:07:44 +02001# 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
kj6a8ce802018-03-19 15:07:44 +02006 readinessRepository: oomk8s
BorislavGf2b49662018-04-15 11:55:39 +00007 readinessImage: readiness-check:2.0.0
kj6a8ce802018-03-19 15:07:44 +02008
9
10# application image
11repository: nexus3.onap.org:10001
Arul.Nambi1996ca02018-07-17 16:02:30 -040012image: onap/search-data-service:1.2.2
kj6a8ce802018-03-19 15:07:44 +020013pullPolicy: 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
BorislavGdd207052018-05-22 11:31:39 +000044 portName: aai-search-data
kj6a8ce802018-03-19 15:07:44 +020045 internalPort: 9509
46
47ingress:
48 enabled: false
49
50resources: {}
51 # We usually recommend not to specify default resources and to leave this as a conscious
52 # choice for the user. This also increases chances charts run on environments with little
53 # resources, such as Minikube. If you do want to specify resources, uncomment the following
54 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
55 #
56 # Example:
57 # Configure resource requests and limits
58 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
59 # Minimum memory for development is 2 CPU cores and 4GB memory
60 # Minimum memory for production is 4 CPU cores and 8GB memory
61#resources:
62# limits:
63# cpu: 2
64# memory: 4Gi
65# requests:
66# cpu: 2
67# memory: 4Gi