blob: 9e16b23bcccb2e04ca026a2f3b25995717d8e73c [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
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7 readinessRepository: oomk8s
BorislavGf2b49662018-04-15 11:55:39 +00008 readinessImage: readiness-check:2.0.0
kj6a8ce802018-03-19 15:07:44 +02009
10
11# application image
12repository: nexus3.onap.org:10001
13image: onap/search-data-service:v1.1.0
14pullPolicy: Always
15restartPolicy: Always
16
17# application configuration
18config:
19 elasticsearchHttpPort: 9200
20 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
21 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
22
23
24# default number of instances
25replicaCount: 1
26
27nodeSelector: {}
28
29affinity: {}
30
31# probe configuration parameters
32liveness:
33 initialDelaySeconds: 10
34 periodSeconds: 10
35 # necessary to disable liveness probe when setting breakpoints
36 # in debugger so K8s doesn't restart unresponsive container
37 enabled: true
38
39readiness:
40 initialDelaySeconds: 10
41 periodSeconds: 10
42
43service:
44 type: ClusterIP
45 name: aai-search-data
46 internalPort: 9509
47
48ingress:
49 enabled: false
50
51resources: {}
52 # We usually recommend not to specify default resources and to leave this as a conscious
53 # choice for the user. This also increases chances charts run on environments with little
54 # resources, such as Minikube. If you do want to specify resources, uncomment the following
55 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
56 #
57 # Example:
58 # Configure resource requests and limits
59 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
60 # Minimum memory for development is 2 CPU cores and 4GB memory
61 # Minimum memory for production is 4 CPU cores and 8GB memory
62#resources:
63# limits:
64# cpu: 2
65# memory: 4Gi
66# requests:
67# cpu: 2
68# memory: 4Gi