12ced6fcbe331dde4b53c32061a764e1b5189eee
[oom.git] / kubernetes / aai / charts / aai-champ / values.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 # Modifications Copyright © 2018 Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   readinessImage: readiness-check:2.0.0
21   loggingImage: beats/filebeat:5.5.0
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26
27 # application image
28 image: onap/champ:1.2.3
29
30 # application configuration
31 config:
32   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34
35 # default number of instances
36 replicaCount: 1
37
38 nodeSelector: {}
39
40 affinity: {}
41
42 # probe configuration parameters
43 liveness:
44   initialDelaySeconds: 10
45   periodSeconds: 10
46   # necessary to disable liveness probe when setting breakpoints
47   # in debugger so K8s doesn't restart unresponsive container
48   enabled: false
49
50 readiness:
51   initialDelaySeconds: 10
52   periodSeconds: 10
53
54 service:
55   type: NodePort
56   portName: aai-champ
57   internalPort: 9522
58   nodePort: 78
59
60 ingress:
61   enabled: false
62
63 resources: {}