blob: 0f5ede8ad0783caed381c75561a9ac0d7cdd33d7 [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
efiacorc8c33162022-11-25 11:36:52 +000021 artifactImage: onap/multicloud/framework-artifactbroker:1.9.0
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:
kj41ef22e2018-04-02 13:34:07 +030059 msbgateway: msb-iag
BorislavG5f3b6192018-03-25 18:12:38 +030060 logstashServiceName: log-ls
61 logstashPort: 5044
Andreas Geissler718fb742023-03-09 09:44:02 +010062 msbPort: 80
kj41ef22e2018-04-02 13:34:07 +030063 aai:
Andreas Geissler718fb742023-03-09 09:44:02 +010064 aaiPort: 80
Bin Yang4884afa2018-05-23 18:30:31 +000065 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030066 username: AAI
67 password: AAI
68
69# default number of instances
70replicaCount: 1
71
72nodeSelector: {}
73
74affinity: {}
75
76# probe configuration parameters
77liveness:
78 initialDelaySeconds: 30
79 periodSeconds: 10
80 timeoutSeconds: 10
81 successThreshold: 1
82 failureThreshold: 5
83 enabled: true
84
85service:
Andreas Geissler718fb742023-03-09 09:44:02 +010086 type: NodePort
kj41ef22e2018-04-02 13:34:07 +030087 internalPort: 9001
Andreas Geissler718fb742023-03-09 09:44:02 +010088 ports:
89 - name: http
90 port: 9001
91 nodePort: '91'
92 annotations:
93 msb.onap.org/service-info: |
94 {{ if .Values.global.msbEnabled -}}[
95 {
96 "serviceName": "multicloud",
97 "version": "v0",
98 "url": "/api/multicloud/v0",
99 "protocol": "REST",
100 "port": "{{ .Values.service.internalPort }}",
101 "enable_ssl": false,
102 "visualRange": "1"
103 },
104 {
105 "serviceName": "multicloud",
106 "version": "v1",
107 "url": "/api/multicloud/v1",
108 "protocol": "REST",
109 "port": "{{ .Values.service.internalPort }}",
110 "enable_ssl": false,
111 "visualRange": "1"
112 }
113 ]{{ end }}
kj41ef22e2018-04-02 13:34:07 +0300114
115ingress:
116 enabled: false
Andreas Geissler718fb742023-03-09 09:44:02 +0100117 service:
118 - baseaddr: 'multicloud-api'
119 name: 'multicloud'
120 port: 9001
kj41ef22e2018-04-02 13:34:07 +0300121
Mukul62927a12018-09-11 11:42:00 +0000122# Resource Limit flavor -By Default using small
123flavor: small
124# Segregation for Different environment (Small and Large)
125resources:
126 small:
127 limits:
128 cpu: 1
129 memory: 4Gi
130 requests:
131 cpu: 10m
132 memory: 1Gi
133 large:
134 limits:
135 cpu: 2
136 memory: 8Gi
137 requests:
138 cpu: 20m
139 memory: 2Gi
Bin Yang0c54f182018-10-09 03:27:40 +0000140 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +0200141
142#Pods Service Account
143serviceAccount:
144 nameOverride: multicloud
145 roles:
146 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100147
148#Log configuration
149log:
150 path: /var/log/onap