[MULTICLOUD] Service mesh compatibility
[oom.git] / kubernetes / multicloud / components / multicloud-vio / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
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
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 image: onap/multicloud/vio:1.4.2
27 pullPolicy: Always
28
29 #Istio sidecar injection policy
30 istioSidecar: true
31
32 # application configuration
33 config:
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-vio
63   portName: http
64   externalPort: 9004
65   internalPort: 9004
66   nodePort: 92
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 #Pods Service Account
92 serviceAccount:
93   nameOverride: multicloud-vio
94   roles:
95     - read
96
97 #Log configuration
98 log:
99   path: /var/log/onap
100 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'