blob: 19b500a62cb19bbc77a5ccefb9f4667951573da8 [file] [log] [blame]
Prateekinlinux445a18e2018-08-01 06:48:33 +00001# Copyright © 2018 Amdocs, Bell Canada , ZTE
Sylvain Desbureaux55af6482020-11-02 18:21:11 +01002# Copyright © 2021 Orange
Prateekinlinux445a18e2018-08-01 06:48:33 +00003#
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.
BorislavG0433c912018-03-21 18:35:30 +020015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
BorislavG0433c912018-03-21 18:35:30 +020020
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
jinquanni1f658fd2023-04-17 15:53:12 +080025image: onap/msb/msb_apigateway:1.6.0
BorislavG0433c912018-03-21 18:35:30 +020026pullPolicy: Always
Huabing Zhao81b89762018-07-30 06:33:03 +000027istioSidecar: true
BorislavG0433c912018-03-21 18:35:30 +020028
29# application configuration
30config:
31 routeLabels: "visualRange:1"
32
33# default number of instances
34replicaCount: 1
35
36nodeSelector: {}
37
38affinity: {}
39
40# probe configuration parameters
41liveness:
42 initialDelaySeconds: 10
43 periodSeconds: 10
44 # necessary to disable liveness probe when setting breakpoints
45 # in debugger so K8s doesn't restart unresponsive container
46 enabled: true
47
48readiness:
49 initialDelaySeconds: 10
50 periodSeconds: 10
51
52service:
53 type: NodePort
54 name: msb-iag
Andreas Geissler8d87db22022-09-15 21:14:00 +020055 # for liveness and readiness probe only
56 # internalPort:
vladimir turokd8044182023-07-27 16:28:36 +020057 internalPort: 80
Andreas Geissler8d87db22022-09-15 21:14:00 +020058 ports:
59 - name: msb-iag
vladimir turokd8044182023-07-27 16:28:36 +020060 port: 80
Andreas Geissler8d87db22022-09-15 21:14:00 +020061 port_protocol: http
62 nodePort: '83'
BorislavG0433c912018-03-21 18:35:30 +020063
64ingress:
65 enabled: false
Lucjan Bryndzaa7228ec2019-12-02 15:11:53 +010066 service:
Andreas Geissler51900a92022-08-03 13:10:35 +020067 - baseaddr: "msb-iag-ui"
Lucjan Bryndzaa7228ec2019-12-02 15:11:53 +010068 name: "msb-iag"
vladimir turokd8044182023-07-27 16:28:36 +020069 port: 80
Lucjan Bryndzaa7228ec2019-12-02 15:11:53 +010070 config:
71 ssl: "redirect"
BorislavG0433c912018-03-21 18:35:30 +020072
vaibhavjayasfe2140f2018-09-21 08:30:57 +000073# Resource Limit flavor -By Default using small
74flavor: small
75# Segregation for Different environment (Small and Large)
76resources:
77 small:
78 limits:
Andreas Geissler47537432024-02-27 08:55:23 +010079 cpu: "1"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010080 memory: "500Mi"
vaibhavjayasfe2140f2018-09-21 08:30:57 +000081 requests:
Andreas Geissler47537432024-02-27 08:55:23 +010082 cpu: "0.5"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010083 memory: "500Mi"
vaibhavjayasfe2140f2018-09-21 08:30:57 +000084 large:
85 limits:
Andreas Geissler47537432024-02-27 08:55:23 +010086 cpu: "2"
87 memory: "1Gi"
vaibhavjayasfe2140f2018-09-21 08:30:57 +000088 requests:
Andreas Geissler47537432024-02-27 08:55:23 +010089 cpu: "1"
90 memory: "1Gi"
Huabing Zhao0f176a02019-03-18 19:31:45 +080091 unlimited: {}
farida azmya4478e82021-10-11 13:48:11 +020092
93#Pods Service Account
94serviceAccount:
95 nameOverride: msb-iag
96 roles:
97 - read
Maciej Wereski0763e6e2021-11-18 11:48:25 +010098
99#Logs configuration
100log:
101 path: /var/log/onap
102logConfigMapNamePrefix: '{{ include "common.fullname" . }}'