blob: 3955a668ebb7b64f032e14b75699d674dae85c72 [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'
64 annotations:
65 msb.onap.org/service-info: |
66 {{ if .Values.global.msbEnabled -}}[
67 {
68 "serviceName": "multicloud-fcaps",
69 "version": "v0",
70 "url": "/api/multicloud-fcaps/v0",
71 "protocol": "REST",
72 "port": "{{ .Values.service.internalPort }}",
73 "enable_ssl": false,
74 "visualRange": "1"
75 },
76 {
77 "serviceName": "multicloud-fcaps",
78 "version": "v1",
79 "url": "/api/multicloud-fcaps/v1",
80 "protocol": "REST",
81 "port": "{{ .Values.service.internalPort }}",
82 "enable_ssl": false,
83 "visualRange": "1"
84 }
85 ]{{ end }}
Bin Yangf28d0b12019-05-07 01:27:31 +000086
87ingress:
88 enabled: false
Andreas Geissler718fb742023-03-09 09:44:02 +010089 service:
90 - baseaddr: 'multicloud-fcaps-api'
91 name: 'multicloud-fcaps'
92 port: 9011
Bin Yangf28d0b12019-05-07 01:27:31 +000093
94# 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
112 unlimited: {}
113
114# rabbit-mq image resource
115rabbitmq: rabbitmq:alpine
farida azmy72513552021-10-12 18:55:21 +0200116
Bin Yangdf4fc032022-03-22 16:08:22 +0800117# memcached image resource
118memcached: memcached:alpine3.15
119
farida azmy72513552021-10-12 18:55:21 +0200120#Pods Service Account
121serviceAccount:
122 nameOverride: multicloud-fcaps
123 roles:
124 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100125
126#Log configuration
127log:
128 path: /var/log/onap
129logConfigMapNamePrefix: '{{ include "common.fullname" . }}'