4e47d37134678faa493ebc9a879150037a2becf4
[oom.git] / kubernetes / aai / charts / aai-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.2-STAGING-latest
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: 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
38 readiness:
39   initialDelaySeconds: 10
40   periodSeconds: 10
41
42 service:
43   type: ClusterIP
44   name: aai-search-data
45   internalPort: 9509
46
47 ingress:
48   enabled: false
49
50 resources: {}
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