blob: ece8ed5426a77aa1cc1343975689eaf8d217a9cb [file] [log] [blame]
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +03001# Copyright © 2018 Amdocs, AT&T, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: nexus3.onap.org:10001
k.kedron2774ab12020-03-26 11:13:46 +010029image: onap/dcae-be:1.3.4
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030030pullPolicy: Always
k.kedron2774ab12020-03-26 11:13:46 +010031backendInitImage: onap/dcae-tools:1.3.4
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030032
33# flag to enable debugging - application support required
34debugEnabled: false
35
36config:
37 javaOptions: -XX:MaxPermSize=256m -Xmx1024m -Dconfig.home=config -Dlog.home=/var/lib/jetty/logs/ -Dlogging.config=config/dcae-be/logback-spring.xml
38 cassandraSslEnabled: "false"
39
40# default number of instances
41replicaCount: 1
42
43nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
49 initialDelaySeconds: 240
50 periodSeconds: 10
51 # necessary to disable liveness probe when setting breakpoints
52 # in debugger so K8s doesn't restart unresponsive container
53 enabled: false
54
55readiness:
56 initialDelaySeconds: 240
57 periodSeconds: 10
58
59service:
60 type: ClusterIP
61 name: sdc-dcae-be
62 portName: sdc-dcae-be-8082
63 externalPort: 8082
64 internalPort: 8082
65 portName2: sdc-dcae-be-8444
66 externalPort2: 8444
67 internalPort2: 8444
68
69ingress:
70 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +000071 service:
72 - baseaddr: "sdc.dcae.plugin"
73 name: "sdc-dcae-be"
74 port: 8282
75 config:
76 ssl: "none"
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030077
78# Resource Limit flavor -By Default using small
79flavor: small
80# Segregation for Different environment (Small and Large)
81resources:
82 small:
83 limits:
84 cpu: 1
85 memory: 4Gi
86 requests:
87 cpu: 10m
88 memory: 1Gi
89 large:
90 limits:
91 cpu: 2
92 memory: 8Gi
93 requests:
94 cpu: 20m
95 memory: 2Gi
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000096 unlimited: {}