blob: ee86a2f0cacf4c0152b634877735113fde918899 [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# Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml
62
kj52dfb132018-03-27 15:50:39 +030063#################################################################
64# Application configuration defaults.
65#################################################################
kj52dfb132018-03-27 15:50:39 +030066
dsingh.27864a34bf2018-09-21 05:11:00 -040067flavor: small
kj52dfb132018-03-27 15:50:39 +030068# default number of instances
69replicaCount: 1
70
71nodeSelector: {}
72
73affinity: {}
74
75# probe configuration parameters
76liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050077 initialDelaySeconds: 350
kj52dfb132018-03-27 15:50:39 +030078 periodSeconds: 10
79 # necessary to disable liveness probe when setting breakpoints
80 # in debugger so K8s doesn't restart unresponsive container
81 enabled: true
82
83readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050084 initialDelaySeconds: 150
kj52dfb132018-03-27 15:50:39 +030085 periodSeconds: 10
86
kj52dfb132018-03-27 15:50:39 +030087ingress:
88 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +000089 service:
90 - baseaddr: "aaf.api"
91 name: "aaf-service"
92 port: 8100
93 config:
94 ssl: "none"
kj52dfb132018-03-27 15:50:39 +030095
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020096persistence: {}
ChrisCec86a532020-03-19 15:53:31 -050097
Instrumental378109d2018-10-16 20:40:41 -050098resources: {}
Sylvain Desbureaux2bbc4022021-06-21 17:52:25 +020099
100aaf-authz:
101 enabled: true
102aaf-hello:
103 enabled: false
104aaf-sms:
105 enabled: true
106aaf-sshsm:
107 enabled: false