blob: c4c95a4d6281410441a3f22a15dea3c96447c862 [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 Yang17d55da2021-12-16 16:52:16 +080021 artifactImage: onap/multicloud/framework-artifactbroker:1.7.2
Kiran Kamineni60f72472018-12-18 13:30:38 -080022 prometheus:
23 enabled: false
Sylvain Desbureauxa1f93012019-12-09 11:43:47 +010024 persistence: {}
Maciej Wereski989c91c2021-11-17 16:45:14 +010025 centralizedLoggingEnabled: true
BorislavG5f3b6192018-03-25 18:12:38 +030026
kj41ef22e2018-04-02 13:34:07 +030027#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
Bin Yangda0a1712021-09-14 10:04:16 +080031image: onap/multicloud/framework:1.7.1
kj41ef22e2018-04-02 13:34:07 +030032pullPolicy: Always
33
Huabing Zhao89577802018-07-30 09:41:17 +000034#Istio sidecar injection policy
35istioSidecar: true
36
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010037multicloud-fcaps:
38 enabled: true
Maciej Wereski989c91c2021-11-17 16:45:14 +010039 logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010040multicloud-k8s:
41 enabled: true
42multicloud-pike:
43 enabled: true
Maciej Wereski989c91c2021-11-17 16:45:14 +010044 logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010045multicloud-prometheus:
46 enabled: false
47multicloud-starlingx:
morganrol3ce2c6e2021-06-21 17:45:39 +020048 enabled: false
Maciej Wereski989c91c2021-11-17 16:45:14 +010049 logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010050multicloud-vio:
morganrol3ce2c6e2021-06-21 17:45:39 +020051 enabled: false
Maciej Wereski989c91c2021-11-17 16:45:14 +010052 logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010053multicloud-windriver:
morganrol3ce2c6e2021-06-21 17:45:39 +020054 enabled: false
Maciej Wereski989c91c2021-11-17 16:45:14 +010055 logConfigMapNamePrefix: '{{ include "common.release" . }}-multicloud'
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010056
kj41ef22e2018-04-02 13:34:07 +030057# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030058config:
Bin Yang2e5ecc32020-01-23 02:46:07 +000059 ssl_enabled: true
60 msbprotocol: https
kj41ef22e2018-04-02 13:34:07 +030061 msbgateway: msb-iag
Bin Yang2e5ecc32020-01-23 02:46:07 +000062 msbPort: 443
BorislavG5f3b6192018-03-25 18:12:38 +030063 logstashServiceName: log-ls
64 logstashPort: 5044
kj41ef22e2018-04-02 13:34:07 +030065 aai:
66 port: 8443
Bin Yang4884afa2018-05-23 18:30:31 +000067 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030068 username: AAI
69 password: AAI
70
71# default number of instances
72replicaCount: 1
73
74nodeSelector: {}
75
76affinity: {}
77
78# probe configuration parameters
79liveness:
80 initialDelaySeconds: 30
81 periodSeconds: 10
82 timeoutSeconds: 10
83 successThreshold: 1
84 failureThreshold: 5
85 enabled: true
86
87service:
Bin Yang9ea6b402019-05-08 02:09:38 +000088 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030089 name: multicloud
Bin Yang0c54f182018-10-09 03:27:40 +000090 portName: multicloud-framework
kj41ef22e2018-04-02 13:34:07 +030091 externalPort: 9001
92 internalPort: 9001
93 nodePort: 91
94
95ingress:
96 enabled: false
97
Mukul62927a12018-09-11 11:42:00 +000098# Resource Limit flavor -By Default using small
99flavor: small
100# Segregation for Different environment (Small and Large)
101resources:
102 small:
103 limits:
104 cpu: 1
105 memory: 4Gi
106 requests:
107 cpu: 10m
108 memory: 1Gi
109 large:
110 limits:
111 cpu: 2
112 memory: 8Gi
113 requests:
114 cpu: 20m
115 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000116 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +0200117
118#Pods Service Account
119serviceAccount:
120 nameOverride: multicloud
121 roles:
122 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100123
124#Log configuration
125log:
126 path: /var/log/onap