blob: ba1e56373c92e7e54b864db50c99d2d561256ec7 [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
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
27repository: nexus3.onap.org:10001
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000028image: onap/aaf/aaf_locate:2.1.2-SNAPSHOT
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000029pullPolicy: Always
30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031
32# default number of instances
33replicaCount: 1
34
35nodeSelector: {}
36
37affinity: {}
38
39# probe configuration parameters
40liveness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000041 initialDelaySeconds: 300
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000042 periodSeconds: 10
43 # necessary to disable liveness probe when setting breakpoints
44 # in debugger so K8s doesn't restart unresponsive container
45 enabled: true
46
47readiness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000048 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000049 periodSeconds: 10
50
51service:
52 name: aaf-locate
53 type: ClusterIP
54 portName: aaf-locate
55 #targetPort
56 internalPort: 8095
57 #port
58 externalPort: 8095
59
60ingress:
61 enabled: false
62
dsingh.27864a34bf2018-09-21 05:11:00 -040063# Configure resource requests and limits
64resources:
65 small:
66 limits:
67 cpu: 200m
68 memory: 600Mi
69 requests:
70 cpu: 20m
71 memory: 300Mi
72 large:
73 limits:
74 cpu: 400m
75 memory: 1Gi
76 requests:
77 cpu: 40m
78 memory: 500Mi
79 unlimited: {}