[MULTICLOUD] Service mesh compatibility
[oom.git] / kubernetes / multicloud / components / multicloud-fcaps / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefixExt: 304
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24 # application image
25 image: onap/multicloud/openstack-fcaps:1.5.7
26 pullPolicy: Always
27
28 #Istio sidecar injection policy
29 istioSidecar: true
30
31 # application configuration
32 config:
33   ssl_enabled: true
34   msbgateway: msb-iag
35   msbPort: 443
36   msbPlainPort: 80
37   aai:
38     aaiPort: 8443
39     aaiPlainPort: 8080
40     schemaVersion: v13
41     username: AAI
42     password: AAI
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 30
54   periodSeconds: 10
55   timeoutSeconds: 10
56   successThreshold: 1
57   failureThreshold: 5
58   enabled: true
59
60 service:
61   type: ClusterIP
62   name: multicloud-fcaps
63   portName: http
64   externalPort: 9011
65   internalPort: 9011
66   nodePort: 87
67
68 ingress:
69   enabled: false
70
71 # Resource Limit flavor -By Default using small
72 flavor: small
73 # Segregation for Different environment (Small and Large)
74 resources:
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
92 rabbitmq: rabbitmq:alpine
93
94 # memcached image resource
95 memcached: memcached:alpine3.15
96
97 #Pods Service Account
98 serviceAccount:
99   nameOverride: multicloud-fcaps
100   roles:
101     - read
102
103 #Log configuration
104 log:
105   path: /var/log/onap
106 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'