blob: 9fbe8529c9e6032b75b5bafe2ebf23b6e41f1d15 [file] [log] [blame]
Gurjeet Bedi274c5792018-03-27 10:22:52 -04001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
Gurjeet Bedi274c5792018-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 Geda38d092a2019-01-09 16:54:14 +000026image: onap/gizmo:1.4-STAGING-latest
rajeshkalai47c1de32018-09-20 06:36:28 -040027flavor: small
Gurjeet Bedi274c5792018-03-27 10:22:52 -040028# application configuration
29config:
30 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
31 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
Lee, Tian (tl5884)f988fcc2019-01-11 16:52:27 +000032 trustStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
Gurjeet Bedi274c5792018-03-27 10:22:52 -040033
34# default number of instances
35replicaCount: 1
36
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
Yang Xu9224dc22019-02-17 16:27:14 -050043 initialDelaySeconds: 60
44 timeoutSeconds: 10
Gurjeet Bedi274c5792018-03-27 10:22:52 -040045 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
50readiness:
Yang Xu9224dc22019-02-17 16:27:14 -050051 initialDelaySeconds: 60
52 timeoutSeconds: 10
Gurjeet Bedi274c5792018-03-27 10:22:52 -040053 periodSeconds: 10
54
55service:
56 type: NodePort
BorislavGdd207052018-05-22 11:31:39 +000057 name: aai-crud-service
58 portName: aai-crud-service
Gurjeet Bedi274c5792018-03-27 10:22:52 -040059 internalPort: 9520
Mandeep Khinda97973012018-10-16 09:56:34 -040060 externalPort: 9520
Mandeep Khinda84ed3412018-05-15 21:08:30 +000061 nodePort: 68
Gurjeet Bedi274c5792018-03-27 10:22:52 -040062
63ingress:
64 enabled: false
65
rajeshkalai47c1de32018-09-20 06:36:28 -040066resources:
67 small:
68 limits:
69 cpu: 2
70 memory: 4Gi
71 requests:
jimmy11867812018-12-06 15:05:48 -050072 cpu: 0.5
73 memory: 1Gi
rajeshkalai47c1de32018-09-20 06:36:28 -040074 large:
75 limits:
76 cpu: 4
77 memory: 8Gi
78 requests:
jimmy11867812018-12-06 15:05:48 -050079 cpu: 1
80 memory: 1536Mi
Mandeep Khinda9a46bf32018-09-24 15:15:48 +000081 unlimited: {}