blob: 645b826efb511b2ce42491d2c4a4e4729122e4e5 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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
kj41ef22e2018-04-02 13:34:07 +030016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
kj41ef22e2018-04-02 13:34:07 +030021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
Bin Yanga20f07b2019-09-30 01:30:13 +000023 artifactImage: onap/multicloud/framework-artifactbroker:1.4.2
Kiran Kamineni60f72472018-12-18 13:30:38 -080024 prometheus:
25 enabled: false
Sylvain Desbureauxa1f93012019-12-09 11:43:47 +010026 persistence: {}
BorislavG5f3b6192018-03-25 18:12:38 +030027
kj41ef22e2018-04-02 13:34:07 +030028#################################################################
29# Application configuration defaults.
30#################################################################
31# application image
32repository: nexus3.onap.org:10001
Bin Yanga20f07b2019-09-30 01:30:13 +000033image: onap/multicloud/framework:1.4.2
kj41ef22e2018-04-02 13:34:07 +030034pullPolicy: Always
35
Huabing Zhao89577802018-07-30 09:41:17 +000036#Istio sidecar injection policy
37istioSidecar: true
38
kj41ef22e2018-04-02 13:34:07 +030039# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030040config:
kj41ef22e2018-04-02 13:34:07 +030041 msbgateway: msb-iag
42 msbPort: 80
BorislavG5f3b6192018-03-25 18:12:38 +030043 logstashServiceName: log-ls
44 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030045 aai:
46 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000047 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030048 username: AAI
49 password: AAI
50
51# default number of instances
52replicaCount: 1
53
54nodeSelector: {}
55
56affinity: {}
57
58# probe configuration parameters
59liveness:
60 initialDelaySeconds: 30
61 periodSeconds: 10
62 timeoutSeconds: 10
63 successThreshold: 1
64 failureThreshold: 5
65 enabled: true
66
67service:
Bin Yang9ea6b402019-05-08 02:09:38 +000068 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030069 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000070 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030071 externalPort: 9001
72 internalPort: 9001
73 nodePort: 91
74
75ingress:
76 enabled: false
77
Mukul62927a12018-09-11 11:42:00 +000078# Resource Limit flavor -By Default using small
79flavor: small
80# Segregation for Different environment (Small and Large)
81resources:
82 small:
83 limits:
84 cpu: 1
85 memory: 4Gi
86 requests:
87 cpu: 10m
88 memory: 1Gi
89 large:
90 limits:
91 cpu: 2
92 memory: 8Gi
93 requests:
94 cpu: 20m
95 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +000096 unlimited: {}