blob: 53729f9311eca4081f8d11b12506cfa750d0ff5e [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
Bin Yangf2344c42020-09-16 14:49:21 +080021 artifactImage: onap/multicloud/framework-artifactbroker:1.6.0
Kiran Kamineni60f72472018-12-18 13:30:38 -080022 prometheus:
23 enabled: false
Sylvain Desbureauxa1f93012019-12-09 11:43:47 +010024 persistence: {}
BorislavG5f3b6192018-03-25 18:12:38 +030025
kj41ef22e2018-04-02 13:34:07 +030026#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
Bin Yangf2344c42020-09-16 14:49:21 +080030image: onap/multicloud/framework:1.6.0
kj41ef22e2018-04-02 13:34:07 +030031pullPolicy: Always
32
Huabing Zhao89577802018-07-30 09:41:17 +000033#Istio sidecar injection policy
34istioSidecar: true
35
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010036multicloud-fcaps:
37 enabled: true
38multicloud-k8s:
39 enabled: true
40multicloud-pike:
41 enabled: true
42multicloud-prometheus:
43 enabled: false
44multicloud-starlingx:
morganrol3ce2c6e2021-06-21 17:45:39 +020045 enabled: false
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010046multicloud-vio:
morganrol3ce2c6e2021-06-21 17:45:39 +020047 enabled: false
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010048multicloud-windriver:
morganrol3ce2c6e2021-06-21 17:45:39 +020049 enabled: false
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010050
kj41ef22e2018-04-02 13:34:07 +030051# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030052config:
Bin Yang2e5ecc32020-01-23 02:46:07 +000053 ssl_enabled: true
54 msbprotocol: https
kj41ef22e2018-04-02 13:34:07 +030055 msbgateway: msb-iag
Bin Yang2e5ecc32020-01-23 02:46:07 +000056 msbPort: 443
BorislavG5f3b6192018-03-25 18:12:38 +030057 logstashServiceName: log-ls
58 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030059 aai:
60 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000061 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030062 username: AAI
63 password: AAI
64
65# default number of instances
66replicaCount: 1
67
68nodeSelector: {}
69
70affinity: {}
71
72# probe configuration parameters
73liveness:
74 initialDelaySeconds: 30
75 periodSeconds: 10
76 timeoutSeconds: 10
77 successThreshold: 1
78 failureThreshold: 5
79 enabled: true
80
81service:
Bin Yang9ea6b402019-05-08 02:09:38 +000082 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030083 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000084 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030085 externalPort: 9001
86 internalPort: 9001
87 nodePort: 91
88
89ingress:
90 enabled: false
91
Mukul62927a12018-09-11 11:42:00 +000092# Resource Limit flavor -By Default using small
93flavor: small
94# Segregation for Different environment (Small and Large)
95resources:
96 small:
97 limits:
98 cpu: 1
99 memory: 4Gi
100 requests:
101 cpu: 10m
102 memory: 1Gi
103 large:
104 limits:
105 cpu: 2
106 memory: 8Gi
107 requests:
108 cpu: 20m
109 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000110 unlimited: {}