Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / msb / components / msb-iag / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada , ZTE
2 # Copyright © 2021 Orange
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 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24 # application image
25 image: onap/msb/msb_apigateway:1.6.0
26 pullPolicy: Always
27 istioSidecar: true
28
29 # application configuration
30 config:
31   routeLabels: "visualRange:1"
32
33 # default number of instances
34 replicaCount: 1
35
36 nodeSelector: {}
37
38 affinity: {}
39
40 # probe configuration parameters
41 liveness:
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
48 readiness:
49   initialDelaySeconds: 10
50   periodSeconds: 10
51
52 service:
53   type: NodePort
54   name: msb-iag
55   # for liveness and readiness probe only
56   # internalPort:
57   internalPort: 80
58   ports:
59     - name: msb-iag
60       port: 80
61       port_protocol: http
62       nodePort: '83'
63
64 ingress:
65   enabled: false
66   service:
67     - baseaddr: "msb-iag-ui"
68       name: "msb-iag"
69       port: 80
70   config:
71     ssl: "redirect"
72
73 # Resource Limit flavor -By Default using small
74 flavor: small
75 # Segregation for Different environment (Small and Large)
76 resources:
77   small:
78     limits:
79       cpu: "1"
80       memory: "500Mi"
81     requests:
82       cpu: "0.5"
83       memory: "500Mi"
84   large:
85     limits:
86       cpu: "2"
87       memory: "1Gi"
88     requests:
89       cpu: "1"
90       memory: "1Gi"
91   unlimited: {}
92
93 #Pods Service Account
94 serviceAccount:
95   nameOverride: msb-iag
96   roles:
97     - read
98
99 #Logs configuration
100 log:
101   path: /var/log/onap
102 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'