Merge "Update Keystore cert"
[oom.git] / kubernetes / aai / charts / aai-gizmo / 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:
18   nodePortPrefix: 302
19   loggingImage: beats/filebeat:5.5.0
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24
25 # application image
26 image: onap/gizmo:1.4-STAGING-latest
27 flavor: small
28 # application configuration
29 config:
30   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
31   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
32   trustStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 60
44   timeoutSeconds: 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: true
49
50 readiness:
51   initialDelaySeconds: 60
52   timeoutSeconds: 10
53   periodSeconds: 10
54
55 service:
56   type: NodePort
57   name: aai-crud-service
58   portName: aai-crud-service
59   internalPort: 9520
60   externalPort: 9520
61   nodePort: 68
62
63 ingress:
64   enabled: false
65
66 resources:
67   small:
68     limits:
69       cpu: 2
70       memory: 4Gi
71     requests:
72       cpu: 0.5
73       memory: 1Gi
74   large:
75     limits:
76       cpu: 4
77       memory: 8Gi
78     requests:
79       cpu: 1
80       memory: 1536Mi
81   unlimited: {}