blob: a149f0656f9be68fda415f42c63e70014ca36e06 [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000020 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070021 readinessImage: readiness-check:2.0.0
dsingh.27864a34bf2018-09-21 05:11:00 -040022flavor: small
Mandeep Khinda60d36d42018-09-24 15:15:48 +000023
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000024#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
dsingh.27864a34bf2018-09-21 05:11:00 -040029image: onap/aaf/aaf_cm:2.1.1
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030pullPolicy: Always
31
32# flag to enable debugging - application support required
33debugEnabled: false
34
35# application configuration
36config: {}
37
38# default number of instances
39replicaCount: 1
40
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 initialDelaySeconds: 10
48 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
51 enabled: true
52
53readiness:
54 initialDelaySeconds: 10
55 periodSeconds: 10
56
57service:
58 name: aaf-cm
59 type: ClusterIP
60 portName: aaf-cm
61 #targetPort
62 internalPort: 8150
63 #port
64 externalPort: 8150
65
66ingress:
67 enabled: false
68
dsingh.27864a34bf2018-09-21 05:11:00 -040069# Configure resource requests and limits
70resources:
71 small:
72 limits:
73 cpu: 200m
74 memory: 800Mi
75 requests:
76 cpu: 20m
77 memory: 500Mi
78 large:
79 limits:
80 cpu: 400m
81 memory: 1Gi
82 requests:
83 cpu: 40m
84 memory: 600Mi
85 unlimited: {}