blob: ea6665c61ab15577da3a8ec16366f247fd66ed4d [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
Instrumentalcc3a0bd2019-05-01 14:18:49 -050021 readinessImage: readiness-check:2.0.2
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000022flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
Instrumental0c7bc942019-08-06 16:36:13 -050027aaf_init:
28 # You might want this in your own app. For AAF, we store in global
29 # replicas: 1
30 fqdn: "aaf-hello"
31 image: onap/aaf/aaf_agent:2.1.15
32 app_ns: "org.osaaf.aaf"
33 fqi: "aaf@aaf.osaaf.org"
34 fqdn: "aaf-hello"
35 public_fqdn: "aaf.osaaf.org"
36 deploy_fqi: "deployer@people.osaaf.org"
37 cadi_latitude: "38.0"
38 cadi_longitude: "-72.0"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000039
Instrumental0c7bc942019-08-06 16:36:13 -050040service:
41 image: onap/aaf/aaf_hello:2.1.15
42 port: "8130"
43 public_port: "31119"
44
45persistence:
46 enabled: true
47 config:
48 #existingClaim:
49 # You will want "Reatan" in non-Hello Example.
50 volumeReclaimPolicy: Delete
51 accessMode: ReadWriteMany
52 size: 40M
53 storageClass: "manual"
54 mountPath: "/mnt/data/aaf/hello"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000055
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000056nodeSelector: {}
57
58affinity: {}
59
60# probe configuration parameters
61liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050062 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000063 periodSeconds: 10
64 # necessary to disable liveness probe when setting breakpoints
65 # in debugger so K8s doesn't restart unresponsive container
66 enabled: true
67
68readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050069 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000070 periodSeconds: 10
71
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000072ingress:
73 enabled: false
74
dsingh.27864a34bf2018-09-21 05:11:00 -040075# Configure resource requests and limits
Instrumentalcc3a0bd2019-05-01 14:18:49 -050076resources: {}
77# Allow END users to do this, if they want. Detrimental to Test services
78#resources:
79# small:
80# limits:
81# cpu: 200m
82# memory: 500Mi
83# requests:
84# cpu: 10m
85# memory: 200Mi
86# large:
87# limits:
88# cpu: 400m
89# memory: 1Gi
90# requests:
91# cpu: 20m
92# memory: 500Mi
93# unlimited: {}