65b3c9dbc27a90c288ac5b8b9fa0a5a2380ea6df
[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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7   readinessRepository: oomk8s
8   readinessImage: readiness-check:2.0.0
9
10
11 # application image
12 repository: nexus3.onap.org:10001
13 image: onap/search-data-service:1.2-STAGING-latest
14 pullPolicy: Always
15 restartPolicy: Always
16
17 # application configuration
18 config:
19   elasticsearchHttpPort: 9200
20   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
21   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
22
23
24 # default number of instances
25 replicaCount: 1
26
27 nodeSelector: {}
28
29 affinity: {}
30
31 # probe configuration parameters
32 liveness:
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
39 readiness:
40   initialDelaySeconds: 10
41   periodSeconds: 10
42
43 service:
44   type: ClusterIP
45   name: aai-search-data
46   internalPort: 9509
47
48 ingress:
49   enabled: false
50
51 resources: {}
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