blob: 68beacdc35964b197e5c364755b43c9ed211efb6 [file] [log] [blame]
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +02001# Copyright © 2018 Orange
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 readinessRepository: oomk8s
21 readinessImage: readiness-check:1.1.0
22 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25subChartsOnly:
26 enabled: true
27
28# application image
29repository: nexus3.onap.org:10001
Gary Wu46621662018-05-30 14:30:47 -070030image: onap/externalapi/nbi:2.0.0
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020031pullPolicy: Always
32sdc_authorization: Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
33aai_authorization: Basic QUFJOkFBSQ==
34so_authorization:
35
36# application configuration
37config:
38 loglevel: INFO
39 logstashServiceName: log-ls
40 logstashPort: 5044
41 cloudOwner: CloudOwner
42 ecompInstanceId: OOM
43 openStackRegion: RegionOne
Sylvain Desbureaux33f83672018-06-01 14:28:39 +020044 openStackVNFTenantId: 31047205ce114b60833b23e400d6a535
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +020045
46mariadb:
47 nameOverride: nbi-mariadb
48 service:
49 name: nbi-mariadbhost
50 internalPort: 3306
51 config:
52 db:
53 database: nbi
54 user: rene
55 password: lkjgklqsdareyhjujlnnbvfvdttuiukgpiokqbfsjdhfigquosegombvjfqhb
56 root_password: dhqjdshjdsguryebvcnbvcvdsqghyjqgktgjjfhjfghbfs
57 persistence:
58 mountSubPath: nbi/maria/data
59 enabled: true
60 disableNfsProvisioner: true
61
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:
86 initialDelaySeconds: 10
87 periodSeconds: 10
88 # necessary to disable liveness probe when setting breakpoints
89 # in debugger so K8s doesn't restart unresponsive container
90 enabled: true
91
92readiness:
93 initialDelaySeconds: 10
94 periodSeconds: 10
95
96service:
97 type: NodePort
98 portName: api
99 name: nbi
Mandeep Khinda9ef4d432018-05-17 20:16:06 +0000100 nodePort: 74
Sylvain Desbureauxe44d1702018-05-07 20:39:16 +0200101 internalPort: 8080
102
103ingress:
104 enabled: false
105
106resources: {}
107 # We usually recommend not to specify default resources and to leave this as a conscious
108 # choice for the user. This also increases chances charts run on environments with little
109 # resources, such as Minikube. If you do want to specify resources, uncomment the following
110 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
111 #
112 # Example:
113 # Configure resource requests and limits
114 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
115 # Minimum memory for development is 2 CPU cores and 4GB memory
116 # Minimum memory for production is 4 CPU cores and 8GB memory
117#resources:
118# limits:
119# cpu: 2
120# memory: 4Gi
121# requests:
122# cpu: 2
123# memory: 4Gi