blob: 12d5d6a04615cebe363df498d8fbb9d4bc9b3455 [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-azure:
37 enabled: true
38multicloud-fcaps:
39 enabled: true
40multicloud-k8s:
41 enabled: true
42multicloud-pike:
43 enabled: true
44multicloud-prometheus:
45 enabled: false
46multicloud-starlingx:
47 enabled: true
48multicloud-vio:
49 enabled: true
50multicloud-windriver:
51 enabled: true
52
kj41ef22e2018-04-02 13:34:07 +030053# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030054config:
Bin Yang2e5ecc32020-01-23 02:46:07 +000055 ssl_enabled: true
56 msbprotocol: https
kj41ef22e2018-04-02 13:34:07 +030057 msbgateway: msb-iag
Bin Yang2e5ecc32020-01-23 02:46:07 +000058 msbPort: 443
BorislavG5f3b6192018-03-25 18:12:38 +030059 logstashServiceName: log-ls
60 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030061 aai:
62 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000063 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030064 username: AAI
65 password: AAI
66
67# default number of instances
68replicaCount: 1
69
70nodeSelector: {}
71
72affinity: {}
73
74# probe configuration parameters
75liveness:
76 initialDelaySeconds: 30
77 periodSeconds: 10
78 timeoutSeconds: 10
79 successThreshold: 1
80 failureThreshold: 5
81 enabled: true
82
83service:
Bin Yang9ea6b402019-05-08 02:09:38 +000084 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030085 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000086 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030087 externalPort: 9001
88 internalPort: 9001
89 nodePort: 91
90
91ingress:
92 enabled: false
93
Mukul62927a12018-09-11 11:42:00 +000094# Resource Limit flavor -By Default using small
95flavor: small
96# Segregation for Different environment (Small and Large)
97resources:
98 small:
99 limits:
100 cpu: 1
101 memory: 4Gi
102 requests:
103 cpu: 10m
104 memory: 1Gi
105 large:
106 limits:
107 cpu: 2
108 memory: 8Gi
109 requests:
110 cpu: 20m
111 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000112 unlimited: {}