blob: b9e90af1ef086eba56c057f0809eced76ef36cab [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:
Bin Yang842a4842020-02-04 01:03:14 +080033 ssl_enabled: true
Bin Yangf28d0b12019-05-07 01:27:31 +000034 msbgateway: msb-iag
Bin Yang842a4842020-02-04 01:03:14 +080035 msbPort: 443
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020036 msbPlainPort: 80
Bin Yangf28d0b12019-05-07 01:27:31 +000037 aai:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020038 aaiPort: 8443
39 aaiPlainPort: 8080
Bin Yangf28d0b12019-05-07 01:27:31 +000040 schemaVersion: v13
41 username: AAI
42 password: AAI
43
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 30
54 periodSeconds: 10
55 timeoutSeconds: 10
56 successThreshold: 1
57 failureThreshold: 5
58 enabled: true
59
60service:
Bin Yang9ea6b402019-05-08 02:09:38 +000061 type: ClusterIP
Bin Yangf28d0b12019-05-07 01:27:31 +000062 name: multicloud-fcaps
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020063 portName: http
Bin Yangf28d0b12019-05-07 01:27:31 +000064 externalPort: 9011
65 internalPort: 9011
66 nodePort: 87
67
68ingress:
69 enabled: false
70
71# Resource Limit flavor -By Default using small
72flavor: small
73# Segregation for Different environment (Small and Large)
74resources:
75 small:
76 limits:
77 cpu: 1
78 memory: 4Gi
79 requests:
80 cpu: 10m
81 memory: 1Gi
82 large:
83 limits:
84 cpu: 2
85 memory: 8Gi
86 requests:
87 cpu: 20m
88 memory: 2Gi
89 unlimited: {}
90
91# rabbit-mq image resource
92rabbitmq: rabbitmq:alpine
farida azmy72513552021-10-12 18:55:21 +020093
Bin Yangdf4fc032022-03-22 16:08:22 +080094# memcached image resource
95memcached: memcached:alpine3.15
96
farida azmy72513552021-10-12 18:55:21 +020097#Pods Service Account
98serviceAccount:
99 nameOverride: multicloud-fcaps
100 roles:
101 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +0100102
103#Log configuration
104log:
105 path: /var/log/onap
106logConfigMapNamePrefix: '{{ include "common.fullname" . }}'