blob: 8406557ee0f0f9ebfeabed709654de68fecf228e [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +02002# Modifications © 2020 AT&T, Orange
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00003#
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
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020016global:
17 nodePortPrefix: 302
18 # Readiness image
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020019 readinessImage: onap/oom/readiness:3.0.1
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020020 # Ubuntu Init image
21 ubuntuInitRepository: registry.hub.docker.com
22 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
23 # Logging image
24 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26 # BusyBox image
27 busyboxRepository: registry.hub.docker.com
28 busyboxImage: library/busybox:1.31
29 persistence:
30 enabled: true
31 # Standard OOM
32 pullPolicy: "Always"
33 repository: "nexus3.onap.org:10001"
34
35 aaf:
36 config:
37 image: onap/aaf/aaf_config:2.1.23
38
39
dsingh.27864a34bf2018-09-21 05:11:00 -040040flavor: small
ChrisCec86a532020-03-19 15:53:31 -050041
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000042#################################################################
43# Application configuration defaults.
44#################################################################
45# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000046
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020047replicaCount: 1
48
49binary: service
50
51sequence_order:
52 - cass
53
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000054nodeSelector: {}
55
56affinity: {}
57
58# probe configuration parameters
59liveness:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020060 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000061 periodSeconds: 10
62 # necessary to disable liveness probe when setting breakpoints
63 # in debugger so K8s doesn't restart unresponsive container
64 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020065 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000066
67readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050068 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000069 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020070 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000071
72service:
73 name: aaf-service
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020074 type: ClusterIP
75 ports:
76 - name: api
77 port: 8100
78 protocol: http
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000079
80ingress:
81 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000082 service:
83 - baseaddr: "aafservice"
84 name: "aaf-service"
85 port: 8100
86 config:
Sylvain Desbureauxcfc90412020-05-06 15:17:55 +020087 ssl: "redirect"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000088
dsingh.27864a34bf2018-09-21 05:11:00 -040089# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010090resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020091 small:
92 limits:
93 cpu: 250m
94 memory: 360Mi
95 requests:
96 cpu: 10m
97 memory: 250Mi
98 large:
99 limits:
100 cpu: 400m
101 memory: 1Gi
102 requests:
103 cpu: 40m
104 memory: 300Mi
105 unlimited: {}