blob: 5a1c5f27092422987c8e4857902a29f95f1857b2 [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
vaibhav_16dece04b2fe2018-03-22 09:07:12 +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
kj52dfb132018-03-27 15:50:39 +030016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
ChrisCec86a532020-03-19 15:53:31 -050021 # Readiness image
kj52dfb132018-03-27 15:50:39 +030022 readinessRepository: oomk8s
Instrumentalcc3a0bd2019-05-01 14:18:49 -050023 readinessImage: readiness-check:2.0.2
ChrisCec86a532020-03-19 15:53:31 -050024 # Ubuntu Init image
Mike Elliottb35b5802018-05-08 14:22:13 -040025 ubuntuInitRepository: registry.hub.docker.com
26 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
ChrisCec86a532020-03-19 15:53:31 -050027 # Logging image
28 loggingRepository: docker.elastic.co
29 loggingImage: beats/filebeat:5.5.0
30 # BusyBox image
31 busyboxRepository: registry.hub.docker.com
32 busyboxImage: library/busybox:latest
Mandeep Khinda60d36d42018-09-24 15:15:48 +000033 persistence:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000034 enabled: true
Instrumental0c7bc942019-08-06 16:36:13 -050035 # Standard OOM
36 pullPolicy: "Always"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050037 repository: "nexus3.onap.org:10001"
Instrumental0c7bc942019-08-06 16:36:13 -050038
39 # Use Local
40 #pullPolicy: IfNotPresent
41 #repository: "nexus3.onap.org:10003"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000042
Instrumentalcc3a0bd2019-05-01 14:18:49 -050043 aaf:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050044 readiness: false
ChrisCec86a532020-03-19 15:53:31 -050045 image: onap/aaf/aaf_core:2.1.20
Instrumentalcc3a0bd2019-05-01 14:18:49 -050046 aaf_env: "DEV"
47 public_fqdn: "aaf.osaaf.org"
Instrumental0c7bc942019-08-06 16:36:13 -050048 aaf_release: "El Alto"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050049 # DUBLIN ONLY - for M4 compatibility with Casablanca
Instrumental0c7bc942019-08-06 16:36:13 -050050 # aaf_locator_name: "public.%NS.%N"
51 # aaf_locator_name_oom: "%NS.%N"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050052 # EL ALTO and Beyond
Instrumental0c7bc942019-08-06 16:36:13 -050053 aaf_locator_name: "%NS.%N"
54 aaf_locator_name_oom: "%CNS.%NS.%N"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000055 cadi_latitude: "38.0"
56 cadi_longitude: "-72.0"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050057 cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
58
Instrumental0c7bc942019-08-06 16:36:13 -050059 config:
ChrisCec86a532020-03-19 15:53:31 -050060 image: onap/aaf/aaf_config:2.1.20
Instrumentalcc3a0bd2019-05-01 14:18:49 -050061 cass:
62 replicas: 1
ChrisCec86a532020-03-19 15:53:31 -050063 image: onap/aaf/aaf_cass:2.1.20
Instrumentalcc3a0bd2019-05-01 14:18:49 -050064 fqdn: "aaf-cass"
65 cluster_name: "osaaf"
66 heap_new_size: "512M"
67 max_heap_size: "1024M"
68 storage_port: 7000
69 ssl_storage_port: 7001
70 native_trans_port: 9042
71 rpc_port: 9160
72 dc: "dc1"
73 service:
74 replicas: 1
75 fqdn: "aaf-service"
76 internal_port: 8100
77 public_port: 31110
78 locate:
79 replicas: 1
80 fqdn: "aaf-locate"
81 internal_port: 8095
82 public_port: 31111
83 oauth:
84 replicas: 1
85 fqdn: "aaf0oauth"
86 internal_port: 8140
87 public_port: 31112
88 gui:
89 replicas: 1
90 fqdn: "aaf-gui"
91 internal_port: 8200
92 public_port: 31113
93 cm:
94 replicas: 1
95 fqdn: "aaf-cm"
96 internal_port: 8150
97 public_port: 31114
98 fs:
99 replicas: 1
100 fqdn: "aaf-fs"
101 internal_port: 8096
102 public_port: 31115
103 hello:
104 replicas: 0
ChrisCec86a532020-03-19 15:53:31 -0500105# Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml
106
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000107
kj52dfb132018-03-27 15:50:39 +0300108#################################################################
109# Application configuration defaults.
110#################################################################
kj52dfb132018-03-27 15:50:39 +0300111
dsingh.27864a34bf2018-09-21 05:11:00 -0400112flavor: small
kj52dfb132018-03-27 15:50:39 +0300113# default number of instances
114replicaCount: 1
115
116nodeSelector: {}
117
118affinity: {}
119
120# probe configuration parameters
121liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500122 initialDelaySeconds: 350
kj52dfb132018-03-27 15:50:39 +0300123 periodSeconds: 10
124 # necessary to disable liveness probe when setting breakpoints
125 # in debugger so K8s doesn't restart unresponsive container
126 enabled: true
127
128readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500129 initialDelaySeconds: 150
kj52dfb132018-03-27 15:50:39 +0300130 periodSeconds: 10
131
kj52dfb132018-03-27 15:50:39 +0300132ingress:
133 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +0000134 service:
135 - baseaddr: "aaf.api"
136 name: "aaf-service"
137 port: 8100
138 config:
139 ssl: "none"
kj52dfb132018-03-27 15:50:39 +0300140
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +0000141## Persist data to a persitent volume
142persistence:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000143 enabled: true
144 config:
145 #existingClaim:
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500146 volumeReclaimPolicy: Delete
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000147 accessMode: ReadWriteMany
148 size: 2Gi
Sylvain Desbureaux7a235752019-11-28 15:01:45 +0100149 mountPath: /dockerdata-nfs
150 mountSubPath: "config"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000151 logs:
152 #existingClaim:
153 volumeReclaimPolicy: Retain
154 accessMode: ReadWriteMany
155 size: 2Gi
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500156 mountPath: "/mnt/data/aaf/logs"
157 status:
158 volumeReclaimPolicy: Delete
159 accessMode: ReadWriteMany
160 size: 2M
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000161 mountPath: /dockerdata-nfs
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500162 mountSubPath: "status"
163 cass:
164 #existingClaim:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000165 volumeReclaimPolicy: Retain
166 accessMode: ReadWriteOnce
167 size: 10Gi
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500168 mountPath: /dockerdata-nfs
169 mountSubPath: "cass"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +0000170
ChrisCec86a532020-03-19 15:53:31 -0500171
Instrumental378109d2018-10-16 20:40:41 -0500172resources: {}