[AAI] Remove AAF/TLS config from charts
[oom.git] / kubernetes / aai / components / aai-babel / values.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 # Modifications Copyright © 2018 Bell Canada
3 # Modifications Copyright © 2020, 2021 Orange
4 # Modifications Copyright © 2023 Nordix Foundation
5 #
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 #################################################################
21 global: {}
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26
27 # application image
28 image: onap/babel:1.11.0
29
30 flavor: small
31 flavorOverride: small
32
33 # default number of instances
34 replicaCount: 1
35
36 updateStrategy:
37   type: RollingUpdate
38   maxUnavailable: 0
39   maxSurge: 1
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
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
53 readiness:
54   initialDelaySeconds: 10
55   periodSeconds: 10
56
57 service:
58   type: NodePort
59   portName: http
60   externalPort: 9516
61   internalPort: 9516
62   nodePort: 79
63
64 ingress:
65   enabled: false
66   service:
67     - baseaddr: "aai-babel-api"
68       name: "aai-babel"
69       port: 9516
70   config:
71     ssl: "redirect"
72
73 resources:
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: {}
89
90 #Pods Service Account
91 serviceAccount:
92   nameOverride: aai-babel
93   roles:
94     - read
95
96 #Log configuration
97 log:
98   path: /var/log/onap
99 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'