blob: 30f7d2d18e4018e67842aeac36ab06702a4baaab [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
32subChartsOnly:
33 enabled: true
34
35# application image
36repository: nexus3.onap.org:10001
aosull019d087242019-09-09 09:31:54 +010037image: onap/externalapi/nbi:5.0.1
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010038pullPolicy: IfNotPresent
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020039sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
40aai_authorization: Basic QUFJOkFBSQ==
41so_authorization:
42
43# application configuration
44config:
45 loglevel: INFO
46 logstashServiceName: log-ls
47 logstashPort: 5044
48 cloudOwner: CloudOwner
49 ecompInstanceId: OOM
50 openStackRegion: RegionOne
Sylvain Desbureaux33f83672018-06-01 14:28:39 +020051 openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020052
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010053mariadb-galera:
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010054 # '&mariadbConfig' means we "store" the values for later use in the file
55 # with '*mariadbConfig' pointer.
56 config: &mariadbConfig
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010057 userName: rene
58 userPassword: lkjgklqsdareyhjujlnnbvfvdttuiukgpiokqbfsjdhfigquosegombvjfqhb
59 mariadbRootPassword: dhqjdshjdsguryebvcnbvcvdsqghyjqgktgjjfhjfghbfs
60 mysqlDatabase: nbi
61 nameOverride: nbi-galera
62 service:
63 name: nbi-galera
64 portName: nbi-galera
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010065 internalPort: 3306
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010066 replicaCount: 1
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020067 persistence:
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020068 enabled: true
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010069 mountSubPath: nbi/maria/data
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020070
Sylvain Desbureaux1d061a42019-11-08 15:27:20 +010071mariadb-init:
72 config: *mariadbConfig
73 nameOverride: nbi-config
74
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020075mongo:
76 nameOverride: nbi-mongo
77 config:
78 dbName: ServiceOrderDB
79 service:
80 name: nbi-mongohost
81 internalPort: 27017
82 nfsprovisionerPrefix: nbi
83 sdnctlPrefix: nbi
84 persistence:
85 mountSubPath: nbi/mongo/data
86 enabled: true
87 disableNfsProvisioner: true
88
89
90# default number of instances
91replicaCount: 1
92
93nodeSelector: {}
94
95affinity: {}
96
97# probe configuration parameters
98liveness:
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +020099 httpGet:
MatthieuGeerebaert33be15d2019-04-04 11:20:34 +0200100 path: /nbi/api/v4/status
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200101 port: 8080
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200102 initialDelaySeconds: 180
103 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200104 # necessary to disable liveness probe when setting breakpoints
105 # in debugger so K8s doesn't restart unresponsive container
106 enabled: true
107
108readiness:
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200109 httpGet:
MatthieuGeerebaert33be15d2019-04-04 11:20:34 +0200110 path: /nbi/api/v4/status
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200111 port: 8080
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +0200112 initialDelaySeconds: 185
113 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200114
115service:
116 type: NodePort
117 portName: api
118 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000119 nodePort: 74
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200120 internalPort: 8080
121
122ingress:
123 enabled: false
Mandeep Khindade045712018-09-19 18:11:57 +0000124# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +0000125flavor: small
126# Segregation for Different environment (Small and Large)
Eric Debeau33774ef2018-09-11 12:23:07 +0000127resources:
vaibhavjayas659fbae2018-09-19 08:58:10 +0000128 small:
129 limits:
Mandeep Khindade045712018-09-19 18:11:57 +0000130 cpu: 1
131 memory: 2Gi
132 requests:
133 cpu: 100m
134 memory: 1Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000135 large:
136 limits:
137 cpu: 2
138 memory: 4Gi
139 requests:
140 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000141 memory: 2Gi
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200142 unlimited: {}