blob: 7b9c15083c8e64c5cc2aa3f622da26cc8c243cd1 [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: >
45 /opt/app/aaf_config/bin/agent.sh;
46 /opt/app/aaf_config/bin/agent.sh local showpass
47 {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop
48
49aafConfig:
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +010050 permission_user: 1000
51 permission_group: 999
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020052
Krzysztof Opasiake383b322020-02-07 15:49:54 +010053#################################################################
54# Secrets metaconfig
55#################################################################
56secrets:
57 - uid: nbi-db-secret
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010058 name: &dbUserSecretName '{{ include "common.release" . }}-nbi-db-secret'
Krzysztof Opasiake383b322020-02-07 15:49:54 +010059 type: basicAuth
60 externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}'
61 login: '{{ .Values.config.db.userName }}'
62 password: '{{ .Values.config.db.userPassword }}'
63
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020064subChartsOnly:
65 enabled: true
66
67# application image
68repository: nexus3.onap.org:10001
aosull016202fd22021-02-23 17:59:34 +000069image: onap/externalapi/nbi:8.0.1
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010070pullPolicy: IfNotPresent
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020071sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
72aai_authorization: Basic QUFJOkFBSQ==
73so_authorization:
74
75# application configuration
76config:
77 loglevel: INFO
78 logstashServiceName: log-ls
79 logstashPort: 5044
80 cloudOwner: CloudOwner
aleemraja40149d82020-10-16 17:48:17 +053081 k8sCloudRegionId: k8sregionfour
82 k8sCloudOwner: k8scloudowner4
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020083 ecompInstanceId: OOM
84 openStackRegion: RegionOne
Sylvain Desbureaux33f83672018-06-01 14:28:39 +020085 openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
Krzysztof Opasiake383b322020-02-07 15:49:54 +010086 db:
87 userName: rene
88 # userPassword: password
89 # userCredentialsExternalSecret: some-secret
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020090
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010091mariadb-galera:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010092 db:
93 externalSecret: *dbUserSecretName
94 name: &mysqlDbName nbi
95 nameOverride: &nbi-galera nbi-galera
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010096 replicaCount: 1
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020097 persistence:
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020098 enabled: true
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010099 mountSubPath: nbi/maria/data
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100100 serviceAccount:
101 nameOverride: *nbi-galera
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200102
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +0100103mariadb-init:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100104 config:
105 userCredentialsExternalSecret: *dbUserSecretName
106 mysqlDatabase: *mysqlDbName
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +0100107 nameOverride: nbi-config
108
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200109mongo:
110 nameOverride: nbi-mongo
111 config:
112 dbName: ServiceOrderDB
113 service:
114 name: nbi-mongohost
115 internalPort: 27017
116 nfsprovisionerPrefix: nbi
117 sdnctlPrefix: nbi
118 persistence:
119 mountSubPath: nbi/mongo/data
120 enabled: true
121 disableNfsProvisioner: true
122
123
124# default number of instances
125replicaCount: 1
126
127nodeSelector: {}
128
129affinity: {}
130
131# probe configuration parameters
132liveness:
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +0100133 path: /nbi/api/v4/status
134 port: 8443
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200135 initialDelaySeconds: 180
136 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200137 # necessary to disable liveness probe when setting breakpoints
138 # in debugger so K8s doesn't restart unresponsive container
139 enabled: true
140
141readiness:
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +0100142 path: /nbi/api/v4/status
143 port: 8443
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200144 initialDelaySeconds: 185
145 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200146
147service:
148 type: NodePort
149 portName: api
150 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000151 nodePort: 74
Sylvain Desbureauxd82050c2020-03-17 10:43:40 +0100152 internalPort: 8443
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200153
154ingress:
155 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +0000156 service:
157 - baseaddr: "nbi.api"
158 name: "nbi"
159 port: 8443
160 config:
161 ssl: "redirect"
Mandeep Khindade045712018-09-19 18:11:57 +0000162# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +0000163flavor: small
164# Segregation for Different environment (Small and Large)
Eric Debeau33774ef2018-09-11 12:23:07 +0000165resources:
vaibhavjayas659fbae2018-09-19 08:58:10 +0000166 small:
167 limits:
Mandeep Khindade045712018-09-19 18:11:57 +0000168 cpu: 1
169 memory: 2Gi
170 requests:
171 cpu: 100m
172 memory: 1Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000173 large:
174 limits:
175 cpu: 2
176 memory: 4Gi
177 requests:
178 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000179 memory: 2Gi
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200180 unlimited: {}