blob: 599bc5548f1034707bd946c070a5a4d121dccc49 [file] [log] [blame]
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -04001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -04003#
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#################################################################
17global:
18 nodePortPrefix: 302
19 loggingImage: beats/filebeat:5.5.0
20
21#################################################################
22# Application configuration defaults.
23#################################################################
24
25# application image
Ravi Geda8da04772019-01-09 16:54:14 +000026image: onap/gizmo:1.4-STAGING-latest
rajeshkalai9fcfbce2018-09-20 06:36:28 -040027flavor: small
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -040028# application configuration
29config:
30 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
31 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
32
33# default number of instances
34replicaCount: 1
35
36nodeSelector: {}
37
38affinity: {}
39
40# probe configuration parameters
41liveness:
42 initialDelaySeconds: 10
43 periodSeconds: 10
44 # necessary to disable liveness probe when setting breakpoints
45 # in debugger so K8s doesn't restart unresponsive container
46 enabled: true
47
48readiness:
49 initialDelaySeconds: 10
50 periodSeconds: 10
51
52service:
53 type: NodePort
BorislavG2d4426e2018-05-22 11:31:39 +000054 name: aai-crud-service
55 portName: aai-crud-service
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -040056 internalPort: 9520
Mandeep Khindafe527eb2018-10-16 09:56:34 -040057 externalPort: 9520
Mandeep Khinda9edbc2a2018-05-15 21:08:30 +000058 nodePort: 68
Gurjeet Bedi3bce64b2018-03-27 10:22:52 -040059
60ingress:
61 enabled: false
62
rajeshkalai9fcfbce2018-09-20 06:36:28 -040063resources:
64 small:
65 limits:
66 cpu: 2
67 memory: 4Gi
68 requests:
jimmy297f59b2018-12-06 15:05:48 -050069 cpu: 0.5
70 memory: 1Gi
rajeshkalai9fcfbce2018-09-20 06:36:28 -040071 large:
72 limits:
73 cpu: 4
74 memory: 8Gi
75 requests:
jimmy297f59b2018-12-06 15:05:48 -050076 cpu: 1
77 memory: 1536Mi
Mandeep Khinda60d36d42018-09-24 15:15:48 +000078 unlimited: {}