blob: 4ac27a8f9d0f489095ad2846657d649816a46434 [file] [log] [blame]
Prateekinlinux445a18e2018-08-01 06:48:33 +00001# Copyright © 2018 Amdocs, Bell Canada , ZTE
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.
BorislavG0433c912018-03-21 18:35:30 +020014#################################################################
15# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020019 readinessImage: onap/oom/readiness:3.0.1
BorislavG0433c912018-03-21 18:35:30 +020020
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
25repository: nexus3.onap.org:10001
Huabing Zhaod0559f42020-04-07 03:08:25 +000026image: onap/msb/msb_discovery:1.2.6
BorislavG0433c912018-03-21 18:35:30 +020027pullPolicy: Always
Huabing Zhao81b89762018-07-30 06:33:03 +000028istioSidecar: true
BorislavG0433c912018-03-21 18:35:30 +020029
30# application configuration
31config: {}
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:
Huabing Zhao7be039e2019-11-19 14:15:23 +080053 type: ClusterIP
BorislavG0433c912018-03-21 18:35:30 +020054 name: msb-discovery
55 externalPort: 10081
56 internalPort: 10081
57 nodePort: 81
58
59ingress:
60 enabled: false
Lucjan Bryndzaa7228ec2019-12-02 15:11:53 +010061 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +000062 - baseaddr: "msb.api.discovery"
Lucjan Bryndzaa7228ec2019-12-02 15:11:53 +010063 name: "msb-discovery"
64 port: 10081
65 config:
66 ssl: "none"
BorislavG0433c912018-03-21 18:35:30 +020067
vaibhavjayasfe2140f2018-09-21 08:30:57 +000068# Resource Limit flavor -By Default using small
69flavor: small
70# Segregation for Different environment (Small and Large)
71resources:
72 small:
73 limits:
74 cpu: 400m
75 memory: 400Mi
76 requests:
77 cpu: 200m
78 memory: 200Mi
79 large:
80 limits:
81 cpu: 800m
82 memory: 800Mi
83 requests:
84 cpu: 400m
85 memory: 400Mi
Huabing Zhao0f176a02019-03-18 19:31:45 +080086 unlimited: {}