blob: 28a5f8d17d2a27f57e2fe4a302931773cc5aeb28 [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
22 readinessImage: readiness-check:1.1.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26subChartsOnly:
27 enabled: true
28
29# application image
30repository: nexus3.onap.org:10001
aosull019d087242019-09-09 09:31:54 +010031image: onap/externalapi/nbi:5.0.1
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020032pullPolicy: Always
33sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
34aai_authorization: Basic QUFJOkFBSQ==
35so_authorization:
36
37# application configuration
38config:
39 loglevel: INFO
40 logstashServiceName: log-ls
41 logstashPort: 5044
42 cloudOwner: CloudOwner
43 ecompInstanceId: OOM
44 openStackRegion: RegionOne
Sylvain Desbureaux33f83672018-06-01 14:28:39 +020045 openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020046
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010047mariadb-galera:
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020048 config:
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010049 userName: rene
50 userPassword: lkjgklqsdareyhjujlnnbvfvdttuiukgpiokqbfsjdhfigquosegombvjfqhb
51 mariadbRootPassword: dhqjdshjdsguryebvcnbvcvdsqghyjqgktgjjfhjfghbfs
52 mysqlDatabase: nbi
53 nameOverride: nbi-galera
54 service:
55 name: nbi-galera
56 portName: nbi-galera
57 replicaCount: 1
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020058 persistence:
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020059 enabled: true
Sylvain Desbureaux9e851c62019-10-28 15:52:05 +010060 mountSubPath: nbi/maria/data
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020061
62mongo:
63 nameOverride: nbi-mongo
64 config:
65 dbName: ServiceOrderDB
66 service:
67 name: nbi-mongohost
68 internalPort: 27017
69 nfsprovisionerPrefix: nbi
70 sdnctlPrefix: nbi
71 persistence:
72 mountSubPath: nbi/mongo/data
73 enabled: true
74 disableNfsProvisioner: true
75
76
77# default number of instances
78replicaCount: 1
79
80nodeSelector: {}
81
82affinity: {}
83
84# probe configuration parameters
85liveness:
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +020086 httpGet:
MatthieuGeerebaert33be15d2019-04-04 11:20:34 +020087 path: /nbi/api/v4/status
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +020088 port: 8080
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +020089 initialDelaySeconds: 180
90 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020091 # necessary to disable liveness probe when setting breakpoints
92 # in debugger so K8s doesn't restart unresponsive container
93 enabled: true
94
95readiness:
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +020096 httpGet:
MatthieuGeerebaert33be15d2019-04-04 11:20:34 +020097 path: /nbi/api/v4/status
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +020098 port: 8080
MatthieuGeerebaert89e3dc82018-10-08 14:02:08 +020099 initialDelaySeconds: 185
100 periodSeconds: 30
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200101
102service:
103 type: NodePort
104 portName: api
105 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000106 nodePort: 74
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200107 internalPort: 8080
108
109ingress:
110 enabled: false
Mandeep Khindade045712018-09-19 18:11:57 +0000111# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +0000112flavor: small
113# Segregation for Different environment (Small and Large)
Eric Debeau33774ef2018-09-11 12:23:07 +0000114resources:
vaibhavjayas659fbae2018-09-19 08:58:10 +0000115 small:
116 limits:
Mandeep Khindade045712018-09-19 18:11:57 +0000117 cpu: 1
118 memory: 2Gi
119 requests:
120 cpu: 100m
121 memory: 1Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000122 large:
123 limits:
124 cpu: 2
125 memory: 4Gi
126 requests:
127 cpu: 200m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000128 memory: 2Gi
MatthieuGeerebaerta3adffd2018-10-05 14:52:50 +0200129 unlimited: {}