blob: 9ea62aa98f4aac14ba8a9aee51e10b0dc60e18f3 [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
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020021 artifactImage: onap/multicloud/framework-artifactbroker:1.8.1
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
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020031image: onap/multicloud/framework:1.8.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
kj41ef22e2018-04-02 13:34:07 +030060 msbgateway: msb-iag
BorislavG5f3b6192018-03-25 18:12:38 +030061 logstashServiceName: log-ls
62 logstashPort: 5044
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020063 msbPort: 443
64 msbPlainPort: 80
kj41ef22e2018-04-02 13:34:07 +030065 aai:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020066 aaiPort: 8443
Andreas Geisslerfcb78782022-11-07 17:57:41 +010067 aaiPlainPort: 80
Bin Yang4884afa2018-05-23 18:30:31 +000068 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030069 username: AAI
70 password: AAI
71
72# default number of instances
73replicaCount: 1
74
75nodeSelector: {}
76
77affinity: {}
78
79# probe configuration parameters
80liveness:
81 initialDelaySeconds: 30
82 periodSeconds: 10
83 timeoutSeconds: 10
84 successThreshold: 1
85 failureThreshold: 5
86 enabled: true
87
88service:
Bin Yang9ea6b402019-05-08 02:09:38 +000089 type: ClusterIP
kj41ef22e2018-04-02 13:34:07 +030090 name: multicloud
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020091 portName: http
kj41ef22e2018-04-02 13:34:07 +030092 externalPort: 9001
93 internalPort: 9001
94 nodePort: 91
95
96ingress:
97 enabled: false
98
Mukul62927a12018-09-11 11:42:00 +000099# Resource Limit flavor -By Default using small
100flavor: small
101# Segregation for Different environment (Small and Large)
102resources:
103 small:
104 limits:
105 cpu: 1
106 memory: 4Gi
107 requests:
108 cpu: 10m
109 memory: 1Gi
110 large:
111 limits:
112 cpu: 2
113 memory: 8Gi
114 requests:
115 cpu: 20m
116 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000117 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +0200118
119#Pods Service Account
120serviceAccount:
121 nameOverride: multicloud
122 roles:
123 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100124
125#Log configuration
126log:
127 path: /var/log/onap