blob: 351c88c70d5d7438bc0470c41397b2225fe872ad [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
ChrisC742a7b22020-09-04 11:29:57 +020023 aafEnabled: true
24
25#################################################################
26# AAF Part
27#################################################################
28certInitializer:
29 nameOverride: sdc-dcae-be-cert-init
30 aafDeployFqi: deployer@people.osaaf.org
31 aafDeployPass: demo123456!
32 fqdn: sdc
33 fqi: sdc@sdc.onap.org
34 public_fqdn: sdc.onap.org
35 cadi_longitude: "0.0"
36 cadi_latitude: "0.0"
37 app_ns: org.osaaf.aaf
38 credsPath: /opt/app/osaaf/local
39 addconfig: true
40 keystoreFile: "org.onap.sdc.p12"
41 truststoreFile: "org.onap.sdc.trust.jks"
42 permission_user: 352070
43 permission_group: 35953
44 aaf_add_config: >
45 /opt/app/aaf_config/bin/agent.sh local showpass
46 {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030047
48#################################################################
49# Application configuration defaults.
50#################################################################
51# application image
52repository: nexus3.onap.org:10001
k.kedron2774ab12020-03-26 11:13:46 +010053image: onap/dcae-be:1.3.4
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030054pullPolicy: Always
k.kedron2774ab12020-03-26 11:13:46 +010055backendInitImage: onap/dcae-tools:1.3.4
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030056
57# flag to enable debugging - application support required
58debugEnabled: false
59
ChrisC742a7b22020-09-04 11:29:57 +020060#environment file
61env:
62 name: AUTO
63
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030064config:
65 javaOptions: -XX:MaxPermSize=256m -Xmx1024m -Dconfig.home=config -Dlog.home=/var/lib/jetty/logs/ -Dlogging.config=config/dcae-be/logback-spring.xml
66 cassandraSslEnabled: "false"
67
68# default number of instances
69replicaCount: 1
70
71nodeSelector: {}
72
73affinity: {}
74
75# probe configuration parameters
76liveness:
77 initialDelaySeconds: 240
78 periodSeconds: 10
79 # necessary to disable liveness probe when setting breakpoints
80 # in debugger so K8s doesn't restart unresponsive container
81 enabled: false
82
83readiness:
84 initialDelaySeconds: 240
85 periodSeconds: 10
86
87service:
88 type: ClusterIP
89 name: sdc-dcae-be
90 portName: sdc-dcae-be-8082
91 externalPort: 8082
92 internalPort: 8082
93 portName2: sdc-dcae-be-8444
94 externalPort2: 8444
95 internalPort2: 8444
96
97ingress:
98 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +000099 service:
100 - baseaddr: "sdc.dcae.plugin"
101 name: "sdc-dcae-be"
102 port: 8282
103 config:
104 ssl: "none"
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +0300105
106# Resource Limit flavor -By Default using small
107flavor: small
108# Segregation for Different environment (Small and Large)
109resources:
110 small:
111 limits:
112 cpu: 1
113 memory: 4Gi
114 requests:
115 cpu: 10m
116 memory: 1Gi
117 large:
118 limits:
119 cpu: 2
120 memory: 8Gi
121 requests:
122 cpu: 20m
123 memory: 2Gi
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +0000124 unlimited: {}