blob: a94bd4df4aca60e7687ad04c96f324ee71deaaab [file] [log] [blame]
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +02001# Copyright © 2018 Orange
Prateekinlinux445a18e2018-08-01 06:48:33 +00002# Modifications Copyright © 2018 Amdocs, Bell Canada
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +02003#
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
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010021 mariadbGalera: &mariadbGalera
22 #This flag allows SO to instantiate its own mariadb-galera cluster
23 localCluster: false
24 service: mariadb-galera
25 internalPort: 3306
26 nameOverride: mariadb-galera
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +010027 aafEnabled: true
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +010028
29#################################################################
30# AAF part
31#################################################################
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020032certInitializer:
33 nameOverride: nbi-cert-initializer
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +010034 aafDeployFqi: deployer@people.osaaf.org
35 aafDeployPass: demo123456!
36 # aafDeployCredsExternalSecret: some secret
37 fqdn: nbi
38 fqi: nbi@nbi.onap.org
39 public_fqdn: nbi.onap.org
40 cadi_longitude: "0.0"
41 cadi_latitude: "0.0"
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +010042 app_ns: org.osaaf.aaf
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020043 credsPath: /opt/app/osaaf/local
44 aaf_add_config: >
Sylvain Desbureauxb28e76c2021-02-23 16:21:19 +010045 echo "cadi_keystore_password_p12=$cadi_keystore_password_p12" > {{ .Values.credsPath }}/mycreds.prop
46 echo "cadi_truststore_password=$cadi_truststore_password" >> {{ .Values.credsPath }}/mycreds.prop
Krzysztof Opasiak020cdb92020-05-01 01:46:37 +020047
48aafConfig:
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +010049 permission_user: 1000
50 permission_group: 999
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020051
Krzysztof Opasiake383b322020-02-07 15:49:54 +010052#################################################################
53# Secrets metaconfig
54#################################################################
55secrets:
56 - uid: nbi-db-secret
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010057 name: &dbUserSecretName '{{ include "common.release" . }}-nbi-db-secret'
Krzysztof Opasiake383b322020-02-07 15:49:54 +010058 type: basicAuth
59 externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}'
60 login: '{{ .Values.config.db.userName }}'
61 password: '{{ .Values.config.db.userPassword }}'
62
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020063subChartsOnly:
64 enabled: true
65
66# application image
67repository: nexus3.onap.org:10001
aosull016202fd22021-02-23 17:59:34 +000068image: onap/externalapi/nbi:8.0.1
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010069pullPolicy: IfNotPresent
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020070sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
71aai_authorization: Basic QUFJOkFBSQ==
72so_authorization:
73
74# application configuration
75config:
76 loglevel: INFO
77 logstashServiceName: log-ls
78 logstashPort: 5044
79 cloudOwner: CloudOwner
aleemraja40149d82020-10-16 17:48:17 +053080 k8sCloudRegionId: k8sregionfour
81 k8sCloudOwner: k8scloudowner4
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020082 ecompInstanceId: OOM
83 openStackRegion: RegionOne
Sylvain Desbureaux33f83672018-06-01 14:28:39 +020084 openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
Krzysztof Opasiake383b322020-02-07 15:49:54 +010085 db:
86 userName: rene
87 # userPassword: password
88 # userCredentialsExternalSecret: some-secret
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020089
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010090mariadb-galera:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010091 db:
92 externalSecret: *dbUserSecretName
93 name: &mysqlDbName nbi
94 nameOverride: &nbi-galera nbi-galera
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010095 replicaCount: 1
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020096 persistence:
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020097 enabled: true
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010098 mountSubPath: nbi/maria/data
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010099 serviceAccount:
100 nameOverride: *nbi-galera
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200101
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +0100102mariadb-init:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100103 config:
104 userCredentialsExternalSecret: *dbUserSecretName
105 mysqlDatabase: *mysqlDbName
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +0100106 nameOverride: nbi-config
107
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200108mongo:
109 nameOverride: nbi-mongo
110 config:
111 dbName: ServiceOrderDB
112 service:
113 name: nbi-mongohost
114 internalPort: 27017
115 nfsprovisionerPrefix: nbi
116 sdnctlPrefix: nbi
117 persistence:
118 mountSubPath: nbi/mongo/data
119 enabled: true
120 disableNfsProvisioner: true
121
122
123# default number of instances
124replicaCount: 1
125
126nodeSelector: {}
127
128affinity: {}
129
130# probe configuration parameters
131liveness:
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +0100132 path: /nbi/api/v4/status
133 port: 8443
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200134 initialDelaySeconds: 180
135 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200136 # necessary to disable liveness probe when setting breakpoints
137 # in debugger so K8s doesn't restart unresponsive container
138 enabled: true
139
140readiness:
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +0100141 path: /nbi/api/v4/status
142 port: 8443
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200143 initialDelaySeconds: 185
144 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200145
146service:
147 type: NodePort
148 portName: api
149 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000150 nodePort: 74
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +0100151 internalPort: 8443
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200152
153ingress:
154 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +0000155 service:
156 - baseaddr: "nbi.api"
157 name: "nbi"
158 port: 8443
159 config:
160 ssl: "redirect"
Mandeep Khindade045712018-09-19 18:11:57 +0000161# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +0000162flavor: small
163# Segregation for Different environment (Small and Large)
Eric Debeau33774ef2018-09-11 12:23:07 +0000164resources:
vaibhavjayas659fbae2018-09-19 08:58:10 +0000165 small:
166 limits:
Mandeep Khindade045712018-09-19 18:11:57 +0000167 cpu: 1
168 memory: 2Gi
169 requests:
170 cpu: 100m
171 memory: 1Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000172 large:
173 limits:
174 cpu: 2
175 memory: 4Gi
176 requests:
177 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000178 memory: 2Gi
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200179 unlimited: {}