blob: 0400dcc1fd99241a9f55655b34c81407ed044462 [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
ChrisCec86a532020-03-19 15:53:31 -05002# Modifications © 2020 AT&T
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00003#
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
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000016flavor: small
ChrisCec86a532020-03-19 15:53:31 -050017
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000018#################################################################
19# Application configuration defaults.
20#################################################################
21# application image
Instrumental0c7bc942019-08-06 16:36:13 -050022aaf_init:
23 # You might want this in your own app. For AAF, we store in global
24 # replicas: 1
ChrisCec86a532020-03-19 15:53:31 -050025 image: onap/aaf/aaf_agent:2.1.20
Instrumental0c7bc942019-08-06 16:36:13 -050026 fqi: "aaf@aaf.osaaf.org"
ChrisCec86a532020-03-19 15:53:31 -050027# This MUST match what is put in AAF's "Artifact" for Certificates
Instrumental0c7bc942019-08-06 16:36:13 -050028 fqdn: "aaf-hello"
ChrisCec86a532020-03-19 15:53:31 -050029# What is put in Locator for External Access
30 locator_public_fqdn: "aaf.osaaf.org"
31 app_ns: "org.osaaf.aaf"
Instrumental0c7bc942019-08-06 16:36:13 -050032 deploy_fqi: "deployer@people.osaaf.org"
33 cadi_latitude: "38.0"
34 cadi_longitude: "-72.0"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000035
Instrumental0c7bc942019-08-06 16:36:13 -050036service:
ChrisCec86a532020-03-19 15:53:31 -050037 image: onap/aaf/aaf_hello:2.1.20
Instrumental0c7bc942019-08-06 16:36:13 -050038 port: "8130"
39 public_port: "31119"
40
41persistence:
ChrisCec86a532020-03-19 15:53:31 -050042 enabled: false
Instrumental0c7bc942019-08-06 16:36:13 -050043 #existingClaim:
44 # You will want "Reatan" in non-Hello Example.
Sylvain Desbureaux7a235752019-11-28 15:01:45 +010045 volumeReclaimPolicy: Delete
46 accessMode: ReadWriteMany
47 size: 40M
48 mountPath: /dockerdata-nfs
49 mountSubPath: aaf/hello
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000050
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000051nodeSelector: {}
52
53affinity: {}
54
55# probe configuration parameters
56liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050057 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000058 periodSeconds: 10
59 # necessary to disable liveness probe when setting breakpoints
60 # in debugger so K8s doesn't restart unresponsive container
61 enabled: true
62
63readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050064 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000065 periodSeconds: 10
66
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000067ingress:
68 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000069 service:
70 - baseaddr: "aafhello"
71 name: "aaf-hello"
72 port: 8130
73 config:
74 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000075
dsingh.27864a34bf2018-09-21 05:11:00 -040076# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010077resources:
78 small:
79 limits:
80 cpu: 200m
81 memory: 500Mi
82 requests:
83 cpu: 10m
84 memory: 200Mi
85 large:
86 limits:
87 cpu: 400m
88 memory: 1Gi
89 requests:
90 cpu: 20m
91 memory: 500Mi
92 unlimited: {}