blob: 7ae0e66f34350c34f3aea0b66fc0873588b4f5d4 [file] [log] [blame]
Instrumental378109d2018-10-16 20:40:41 -05001
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00002# Copyright © 2017 Amdocs, 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#################################################################
19global:
20 nodePortPrefix: 302
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000021 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070022 readinessImage: readiness-check:2.0.0
dsingh.27864a34bf2018-09-21 05:11:00 -040023flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000024#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
Gary Wu72901cd2018-11-15 18:27:40 -080029image: onap/aaf/aaf_gui:2.1.8
Instrumental378109d2018-10-16 20:40:41 -050030aaf_register_as: "aaf-gui.onap"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031pullPolicy: Always
32
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000033
34# default number of instances
35replicaCount: 1
36
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000043 initialDelaySeconds: 300
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000044 periodSeconds: 10
45 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: true
48
49readiness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000050 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000051 periodSeconds: 10
52
53service:
54 name: aaf-gui
55 type: NodePort
56 portName: aaf-gui
57 #targetPort
58 internalPort: 8200
59 #port
60 externalPort: 8200
61 nodePort: 51
62
63ingress:
64 enabled: false
65
dsingh.27864a34bf2018-09-21 05:11:00 -040066# Configure resource requests and limits
67resources:
68 small:
69 limits:
70 cpu: 100m
71 memory: 500Mi
72 requests:
73 cpu: 10m
74 memory: 200Mi
75 large:
76 limits:
77 cpu: 200m
78 memory: 1Gi
79 requests:
80 cpu: 100m
81 memory: 500Mi
Instrumental378109d2018-10-16 20:40:41 -050082 unlimited: {}