blob: f0a5ec2b78721c21f29940464e511bac077a42e0 [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# Copyright © 2018 Amdocs, AT&T
2# Modifications Copyright © 2018 Bell Canada
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01003# Modifications Copyright © 2020 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17#################################################################
18# Global configuration defaults.
19#################################################################
20global:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010021 installSidecarSecurity: false
Sylvain Desbureaux70070412020-11-09 21:58:48 +010022
23#################################################################
24# Application configuration defaults.
25#################################################################
26
27# application image
28image: onap/babel:1.7.1
29
30flavor: small
31flavorOverride: small
32
33# application configuration
34config:
35 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
36 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
37
38# default number of instances
39replicaCount: 1
40
41nodeSelector: {}
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
59 portName: babel
60 externalPort: 9516
61 internalPort: 9516
62 nodePort: 79
63
64ingress:
65 enabled: false
66 service:
67 - baseaddr: "aaibabel"
68 name: "aai-babel"
69 port: 9516
70 config:
71 ssl: "redirect"
72
73resources:
74 small:
75 limits:
76 cpu: 2
77 memory: 4Gi
78 requests:
79 cpu: 0.5
80 memory: 1Gi
81 large:
82 limits:
83 cpu: 4
84 memory: 8Gi
85 requests:
86 cpu: 2
87 memory: 2Gi
88 unlimited: {}