blob: 83c6d3aef720805c99cd57bb3f7e62fa996bfe7f [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
21 readinessImage: readiness-check:2.0.0
dsingh.27864a34bf2018-09-21 05:11:00 -040022flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
27repository: nexus3.onap.org:10001
Instrumental04899192018-10-25 04:23:40 +000028image: onap/aaf/aaf_service:2.1.6-SNAPSHOT
Instrumental378109d2018-10-16 20:40:41 -050029aaf_register_as: "aaf-service.onap"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030pullPolicy: Always
31
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000032
33# default number of instances
34replicaCount: 1
35
36nodeSelector: {}
37
38affinity: {}
39
40# probe configuration parameters
41liveness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000042 initialDelaySeconds: 300
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000043 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:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000049 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000050 periodSeconds: 10
51
52service:
53 name: aaf-service
54 type: NodePort
55 portName: aaf-service
56 #targetPort
57 internalPort: 8100
58 #port
59 externalPort: 8100
Mandeep Khindaf8bd9ca2018-05-08 00:35:56 +000060 nodePort: 47
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000061
62ingress:
63 enabled: false
64
dsingh.27864a34bf2018-09-21 05:11:00 -040065# Configure resource requests and limits
66resources:
67 small:
68 limits:
69 cpu: 200m
70 memory: 600Mi
71 requests:
72 cpu: 20m
73 memory: 300Mi
74 large:
75 limits:
76 cpu: 400m
77 memory: 1Gi
78 requests:
79 cpu: 40m
80 memory: 300Mi
Instrumental378109d2018-10-16 20:40:41 -050081 unlimited: {}