blob: 3b852df885cf4dfeeed70b2a26d6e9613d5e4a14 [file] [log] [blame]
kj41ef22e2018-04-02 13:34:07 +03001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T
kj41ef22e2018-04-02 13:34:07 +03003#
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#################################################################
19global:
20 nodePortPrefix: 302
kj41ef22e2018-04-02 13:34:07 +030021
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020026image: onap/multicloud/vio:1.4.2
kj41ef22e2018-04-02 13:34:07 +030027pullPolicy: Always
28
Huabing Zhao89577802018-07-30 09:41:17 +000029#Istio sidecar injection policy
Mandeep Khinda60d36d42018-09-24 15:15:48 +000030istioSidecar: true
Huabing Zhao89577802018-07-30 09:41:17 +000031
kj41ef22e2018-04-02 13:34:07 +030032# application configuration
33config:
34 msbgateway: msb-iag
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020035 msbPort: 443
36 msbPlainPort: 80
kj41ef22e2018-04-02 13:34:07 +030037 aai:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020038 aaiPort: 8443
39 aaiPlainPort: 8080
Bin Yang4884afa2018-05-23 18:30:31 +000040 schemaVersion: v13
kj41ef22e2018-04-02 13:34:07 +030041 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
kj41ef22e2018-04-02 13:34:07 +030062 name: multicloud-vio
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020063 portName: http
kj41ef22e2018-04-02 13:34:07 +030064 externalPort: 9004
65 internalPort: 9004
66 nodePort: 92
67
Pradeep Pateld5187f92018-04-26 06:07:56 +000068ingress:
69 enabled: false
70
Mukul62927a12018-09-11 11:42:00 +000071# 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
Bin Yang0c54f182018-10-09 03:27:40 +000089 unlimited: {}
farida azmy72513552021-10-12 18:55:21 +020090
91#Pods Service Account
92serviceAccount:
93 nameOverride: multicloud-vio
94 roles:
95 - read
Maciej Wereski989c91c2021-11-17 16:45:14 +010096
97#Log configuration
98log:
99 path: /var/log/onap
100logConfigMapNamePrefix: '{{ include "common.fullname" . }}'