blob: 9f9c0fa4762a35075ad20c473ca96b82c82588b5 [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
Quoc Nghia Nguyendd0b3652018-09-17 22:28:28 +020031image: onap/externalapi/nbi:3.0.0-latest
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
47mariadb:
48 nameOverride: nbi-mariadb
49 service:
50 name: nbi-mariadbhost
51 internalPort: 3306
52 config:
53 db:
54 database: nbi
55 user: rene
56 password: lkjgklqsdareyhjujlnnbvfvdttuiukgpiokqbfsjdhfigquosegombvjfqhb
57 root_password: dhqjdshjdsguryebvcnbvcvdsqghyjqgktgjjfhjfghbfs
58 persistence:
59 mountSubPath: nbi/maria/data
60 enabled: true
61 disableNfsProvisioner: true
62
63mongo:
64 nameOverride: nbi-mongo
65 config:
66 dbName: ServiceOrderDB
67 service:
68 name: nbi-mongohost
69 internalPort: 27017
70 nfsprovisionerPrefix: nbi
71 sdnctlPrefix: nbi
72 persistence:
73 mountSubPath: nbi/mongo/data
74 enabled: true
75 disableNfsProvisioner: true
76
77
78# default number of instances
79replicaCount: 1
80
81nodeSelector: {}
82
83affinity: {}
84
85# probe configuration parameters
86liveness:
MatthieuGeerebaert50d3f3f2018-08-17 11:05:35 +020087 initialDelaySeconds: 120
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020088 periodSeconds: 10
89 # necessary to disable liveness probe when setting breakpoints
90 # in debugger so K8s doesn't restart unresponsive container
91 enabled: true
92
93readiness:
94 initialDelaySeconds: 10
95 periodSeconds: 10
96
97service:
98 type: NodePort
99 portName: api
100 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000101 nodePort: 74
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200102 internalPort: 8080
103
104ingress:
105 enabled: false
Mandeep Khindade045712018-09-19 18:11:57 +0000106# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +0000107flavor: small
108# Segregation for Different environment (Small and Large)
Eric Debeau33774ef2018-09-11 12:23:07 +0000109resources:
vaibhavjayas659fbae2018-09-19 08:58:10 +0000110 small:
111 limits:
Mandeep Khindade045712018-09-19 18:11:57 +0000112 cpu: 1
113 memory: 2Gi
114 requests:
115 cpu: 100m
116 memory: 1Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000117 large:
118 limits:
119 cpu: 2
120 memory: 4Gi
121 requests:
122 cpu: 200m
123 memory: 2Gi