blob: 0e44668ea9352e3cad9beacf2dbbbe5d2589c715 [file] [log] [blame]
Bin Yangf28d0b12019-05-07 01:27:31 +00001# Copyright (c) 2019, CMCC Technologies Co., Ltd.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefixExt: 304
20
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
Bin Yangdf4fc032022-03-22 16:08:22 +080025image: onap/multicloud/openstack-fcaps:1.5.7
Bin Yangf28d0b12019-05-07 01:27:31 +000026pullPolicy: Always
27
28#Istio sidecar injection policy
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020029istioSidecar: true
Bin Yangf28d0b12019-05-07 01:27:31 +000030
31# application configuration
32config:
33 msbgateway: msb-iag
Andreas Geissler718fb742023-03-09 09:44:02 +010034 msbPort: 80
Bin Yangf28d0b12019-05-07 01:27:31 +000035 aai:
Andreas Geissler718fb742023-03-09 09:44:02 +010036 aaiPort: 80
Bin Yangf28d0b12019-05-07 01:27:31 +000037 schemaVersion: v13
38 username: AAI
39 password: AAI
40
41# default number of instances
42replicaCount: 1
43
44nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
50 initialDelaySeconds: 30
51 periodSeconds: 10
52 timeoutSeconds: 10
53 successThreshold: 1
54 failureThreshold: 5
55 enabled: true
56
57service:
Andreas Geissler718fb742023-03-09 09:44:02 +010058 type: NodePort
Bin Yangf28d0b12019-05-07 01:27:31 +000059 internalPort: 9011
Andreas Geissler718fb742023-03-09 09:44:02 +010060 ports:
61 - name: http
62 port: 9011
63 nodePort: '87'
Andreas Geissleraeb99f42023-06-28 10:29:00 +020064 useNodePortExt: true
Andreas Geissler718fb742023-03-09 09:44:02 +010065 annotations:
66 msb.onap.org/service-info: |
67 {{ if .Values.global.msbEnabled -}}[
68 {
69 "serviceName": "multicloud-fcaps",
70 "version": "v0",
71 "url": "/api/multicloud-fcaps/v0",
72 "protocol": "REST",
73 "port": "{{ .Values.service.internalPort }}",
74 "enable_ssl": false,
75 "visualRange": "1"
76 },
77 {
78 "serviceName": "multicloud-fcaps",
79 "version": "v1",
80 "url": "/api/multicloud-fcaps/v1",
81 "protocol": "REST",
82 "port": "{{ .Values.service.internalPort }}",
83 "enable_ssl": false,
84 "visualRange": "1"
85 }
86 ]{{ end }}
Bin Yangf28d0b12019-05-07 01:27:31 +000087
88ingress:
89 enabled: false
Andreas Geissler718fb742023-03-09 09:44:02 +010090 service:
91 - baseaddr: 'multicloud-fcaps-api'
92 name: 'multicloud-fcaps'
93 port: 9011
Bin Yangf28d0b12019-05-07 01:27:31 +000094
95# Resource Limit flavor -By Default using small
96flavor: small
97# Segregation for Different environment (Small and Large)
98resources:
99 small:
100 limits:
101 cpu: 1
102 memory: 4Gi
103 requests:
104 cpu: 10m
105 memory: 1Gi
106 large:
107 limits:
108 cpu: 2
109 memory: 8Gi
110 requests:
111 cpu: 20m
112 memory: 2Gi
113 unlimited: {}
114
115# rabbit-mq image resource
116rabbitmq: rabbitmq:alpine
farida azmy72513552021-10-12 18:55:21 +0200117
Bin Yangdf4fc032022-03-22 16:08:22 +0800118# memcached image resource
119memcached: memcached:alpine3.15
120
farida azmy72513552021-10-12 18:55:21 +0200121#Pods Service Account
122serviceAccount:
123 nameOverride: multicloud-fcaps
124 roles:
125 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100126
127#Log configuration
128log:
129 path: /var/log/onap
130logConfigMapNamePrefix: '{{ include "common.fullname" . }}'