blob: bbc64d21133a0a24ab30b3489aa5f09ece3c6e33 [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# Copyright © 2018 Amdocs, AT&T
2# Modifications Copyright © 2018 Bell Canada
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +01003# Modifications Copyright © 2020, 2021 Orange
efiacord12c1672023-03-23 12:10:50 +00004# Modifications Copyright © 2023 Nordix Foundation
Sylvain Desbureaux70070412020-11-09 21:58:48 +01005#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18#################################################################
19# Global configuration defaults.
20#################################################################
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010021global: {}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010022
23#################################################################
24# Application configuration defaults.
25#################################################################
26
27# application image
wr148d702d68a2022-10-20 18:26:54 -040028image: onap/babel:1.11.0
Sylvain Desbureaux70070412020-11-09 21:58:48 +010029
30flavor: small
31flavorOverride: small
32
Sylvain Desbureaux70070412020-11-09 21:58:48 +010033# default number of instances
34replicaCount: 1
35
Rommel Pawar63db7162022-11-16 10:11:24 -080036updateStrategy:
37 type: RollingUpdate
38 maxUnavailable: 0
39 maxSurge: 1
40
Sylvain Desbureaux70070412020-11-09 21:58:48 +010041nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 initialDelaySeconds: 10
48 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
51 enabled: false
52
53readiness:
54 initialDelaySeconds: 10
55 periodSeconds: 10
56
57service:
58 type: NodePort
Sylvain Desbureaux70070412020-11-09 21:58:48 +010059 internalPort: 9516
Andreas Geissler5846a6e2023-03-30 17:26:14 +020060 ports:
61 - name: http
62 port: 9516
63 nodePort: 79
Sylvain Desbureaux70070412020-11-09 21:58:48 +010064
65ingress:
66 enabled: false
67 service:
Andreas Geissler51900a92022-08-03 13:10:35 +020068 - baseaddr: "aai-babel-api"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010069 name: "aai-babel"
70 port: 9516
71 config:
72 ssl: "redirect"
73
74resources:
75 small:
76 limits:
77 cpu: 2
78 memory: 4Gi
79 requests:
80 cpu: 0.5
81 memory: 1Gi
82 large:
83 limits:
84 cpu: 4
85 memory: 8Gi
86 requests:
87 cpu: 2
88 memory: 2Gi
89 unlimited: {}
farida azmyd8937332021-03-09 12:20:42 +020090
91#Pods Service Account
92serviceAccount:
93 nameOverride: aai-babel
94 roles:
95 - read
Maciej Wereskid523d122021-09-21 11:22:13 +020096
97#Log configuration
98log:
99 path: /var/log/onap
100logConfigMapNamePrefix: '{{ include "common.fullname" . }}'