blob: b0143608330fc303ef6859f0d8ba6448d0bc35ba [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
ChrisCec86a532020-03-19 15:53:31 -05002# Modifications © 2020 AT&T
Maciej Malewski955e39d2020-08-27 10:43:09 +02003# Modifications Copyright © 2020 Nokia
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
kj52dfb132018-03-27 15:50:39 +030017#################################################################
18# Global configuration defaults.
19#################################################################
EmmettCoxbca68e02020-02-27 14:20:52 +000020
kj52dfb132018-03-27 15:50:39 +030021global:
22 nodePortPrefix: 302
Mandeep Khinda60d36d42018-09-24 15:15:48 +000023 persistence:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000024 enabled: true
Instrumental0c7bc942019-08-06 16:36:13 -050025 # Standard OOM
26 pullPolicy: "Always"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000027
EmmettCoxbca68e02020-02-27 14:20:52 +000028 cmpv2Enabled: true
29 addTestingComponents: false
Instrumentalcc3a0bd2019-05-01 14:18:49 -050030 aaf:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050031 readiness: false
ChrisC73876b42020-05-27 15:45:34 +020032 image: onap/aaf/aaf_core:2.1.23
Instrumentalcc3a0bd2019-05-01 14:18:49 -050033 aaf_env: "DEV"
34 public_fqdn: "aaf.osaaf.org"
ChrisC73876b42020-05-27 15:45:34 +020035 aaf_release: "Frankfurt"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050036 # DUBLIN ONLY - for M4 compatibility with Casablanca
Instrumental0c7bc942019-08-06 16:36:13 -050037 # aaf_locator_name: "public.%NS.%N"
38 # aaf_locator_name_oom: "%NS.%N"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050039 # EL ALTO and Beyond
Instrumental0c7bc942019-08-06 16:36:13 -050040 aaf_locator_name: "%NS.%N"
41 aaf_locator_name_oom: "%CNS.%NS.%N"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000042 cadi_latitude: "38.0"
43 cadi_longitude: "-72.0"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050044 cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
45
Instrumental0c7bc942019-08-06 16:36:13 -050046 config:
ChrisC73876b42020-05-27 15:45:34 +020047 image: onap/aaf/aaf_config:2.1.23
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020048
Instrumentalcc3a0bd2019-05-01 14:18:49 -050049 service:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050050 fqdn: "aaf-service"
51 internal_port: 8100
52 public_port: 31110
53 locate:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050054 fqdn: "aaf-locate"
55 internal_port: 8095
56 public_port: 31111
57 oauth:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020058 fqdn: "aaf-oauth"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050059 internal_port: 8140
60 public_port: 31112
ChrisCec86a532020-03-19 15:53:31 -050061
kj52dfb132018-03-27 15:50:39 +030062#################################################################
63# Application configuration defaults.
64#################################################################
kj52dfb132018-03-27 15:50:39 +030065
dsingh.27864a34bf2018-09-21 05:11:00 -040066flavor: small
kj52dfb132018-03-27 15:50:39 +030067# default number of instances
68replicaCount: 1
69
70nodeSelector: {}
71
72affinity: {}
73
74# probe configuration parameters
75liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050076 initialDelaySeconds: 350
kj52dfb132018-03-27 15:50:39 +030077 periodSeconds: 10
78 # necessary to disable liveness probe when setting breakpoints
79 # in debugger so K8s doesn't restart unresponsive container
80 enabled: true
81
82readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050083 initialDelaySeconds: 150
kj52dfb132018-03-27 15:50:39 +030084 periodSeconds: 10
85
kj52dfb132018-03-27 15:50:39 +030086ingress:
87 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +000088 service:
89 - baseaddr: "aaf.api"
90 name: "aaf-service"
91 port: 8100
92 config:
93 ssl: "none"
kj52dfb132018-03-27 15:50:39 +030094
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020095persistence: {}
ChrisCec86a532020-03-19 15:53:31 -050096
Instrumental378109d2018-10-16 20:40:41 -050097resources: {}
Sylvain Desbureaux2bbc4022021-06-21 17:52:25 +020098
99aaf-authz:
100 enabled: true
Sylvain Desbureaux2bbc4022021-06-21 17:52:25 +0200101aaf-sms:
102 enabled: true
103aaf-sshsm:
104 enabled: false