blob: 29939722d629668ecd688fdc101e13f85d5c456c [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
21 readinessRepository: oomk8s
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010022 readinessImage: readiness-check:2.0.2
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010025 mariadbGalera: &mariadbGalera
26 #This flag allows SO to instantiate its own mariadb-galera cluster
27 localCluster: false
28 service: mariadb-galera
29 internalPort: 3306
30 nameOverride: mariadb-galera
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020031
Krzysztof Opasiake383b322020-02-07 15:49:54 +010032#################################################################
33# Secrets metaconfig
34#################################################################
35secrets:
36 - uid: nbi-db-secret
37 name: '{{ include "common.release" . }}-nbi-db-secret'
38 type: basicAuth
39 externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}'
40 login: '{{ .Values.config.db.userName }}'
41 password: '{{ .Values.config.db.userPassword }}'
42
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020043subChartsOnly:
44 enabled: true
45
46# application image
47repository: nexus3.onap.org:10001
aosull019d087242019-09-09 09:31:54 +010048image: onap/externalapi/nbi:5.0.1
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010049pullPolicy: IfNotPresent
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020050sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
51aai_authorization: Basic QUFJOkFBSQ==
52so_authorization:
53
54# application configuration
55config:
56 loglevel: INFO
57 logstashServiceName: log-ls
58 logstashPort: 5044
59 cloudOwner: CloudOwner
60 ecompInstanceId: OOM
61 openStackRegion: RegionOne
Sylvain Desbureaux33f83672018-06-01 14:28:39 +020062 openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
Krzysztof Opasiake383b322020-02-07 15:49:54 +010063 db:
64 userName: rene
65 # userPassword: password
66 # userCredentialsExternalSecret: some-secret
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020067
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010068mariadb-galera:
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010069 # '&mariadbConfig' means we "store" the values for later use in the file
70 # with '*mariadbConfig' pointer.
71 config: &mariadbConfig
Krzysztof Opasiak8cf46b42020-02-08 01:07:21 +010072 userCredentialsExternalSecret: '{{ include "common.release" . }}-nbi-db-secret'
Krzysztof Opasiake383b322020-02-07 15:49:54 +010073 mysqlDatabase: nbi
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010074 nameOverride: nbi-galera
75 service:
76 name: nbi-galera
77 portName: nbi-galera
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010078 internalPort: 3306
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010079 replicaCount: 1
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020080 persistence:
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020081 enabled: true
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010082 mountSubPath: nbi/maria/data
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020083
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010084mariadb-init:
85 config: *mariadbConfig
86 nameOverride: nbi-config
87
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020088mongo:
89 nameOverride: nbi-mongo
90 config:
91 dbName: ServiceOrderDB
92 service:
93 name: nbi-mongohost
94 internalPort: 27017
95 nfsprovisionerPrefix: nbi
96 sdnctlPrefix: nbi
97 persistence:
98 mountSubPath: nbi/mongo/data
99 enabled: true
100 disableNfsProvisioner: true
101
102
103# default number of instances
104replicaCount: 1
105
106nodeSelector: {}
107
108affinity: {}
109
110# probe configuration parameters
111liveness:
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200112 httpGet:
MatthieuGeerebaert33be15d2019-04-04 11:20:34 +0200113 path: /nbi/api/v4/status
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200114 port: 8080
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200115 initialDelaySeconds: 180
116 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200117 # necessary to disable liveness probe when setting breakpoints
118 # in debugger so K8s doesn't restart unresponsive container
119 enabled: true
120
121readiness:
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200122 httpGet:
MatthieuGeerebaert33be15d2019-04-04 11:20:34 +0200123 path: /nbi/api/v4/status
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200124 port: 8080
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200125 initialDelaySeconds: 185
126 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200127
128service:
129 type: NodePort
130 portName: api
131 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000132 nodePort: 74
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200133 internalPort: 8080
134
135ingress:
136 enabled: false
Mandeep Khindade045712018-09-19 18:11:57 +0000137# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +0000138flavor: small
139# Segregation for Different environment (Small and Large)
Eric Debeau33774ef2018-09-11 12:23:07 +0000140resources:
vaibhavjayas659fbae2018-09-19 08:58:10 +0000141 small:
142 limits:
Mandeep Khindade045712018-09-19 18:11:57 +0000143 cpu: 1
144 memory: 2Gi
145 requests:
146 cpu: 100m
147 memory: 1Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000148 large:
149 limits:
150 cpu: 2
151 memory: 4Gi
152 requests:
153 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000154 memory: 2Gi
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200155 unlimited: {}