blob: f4d06454a3591b374989640a0c87ae2dec08fe83 [file] [log] [blame]
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +03001# Copyright © 2017 Amdocs, 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-fe-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-fe:1.3.4
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030054pullPolicy: Always
55config:
56 javaOptions: -XX:MaxPermSize=256m -Xmx1024m -Dconfig.home=config -Dlog.home=/var/lib/jetty/logs/ -Dlogging.config=config/dcae-fe/logback-spring.xml
57
ChrisC742a7b22020-09-04 11:29:57 +020058#environment file
59env:
60 name: AUTO
61
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030062# default number of instances
63replicaCount: 1
64
65nodeSelector: {}
66
67affinity: {}
68
69# probe configuration parameters
70liveness:
71 initialDelaySeconds: 10
72 periodSeconds: 10
73 # necessary to disable liveness probe when setting breakpoints
74 # in debugger so K8s doesn't restart unresponsive container
75 enabled: false
76
77readiness:
78 initialDelaySeconds: 10
79 periodSeconds: 10
80
81service:
82 #Example service definition with external, internal and node ports.
83 #Services may use any combination of ports depending on the 'type' of
84 #service being defined.
85 type: NodePort
86 name: sdc-dcae-fe
87 portName: dcae-fe
Fuss, Areli (af732p)e2c1f3b2020-03-31 19:02:58 +030088 nodePort: "64"
89 internalPort: 9444
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030090
91ingress:
92 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010093 service:
94 - baseaddr: "dcaedt"
95 name: "sdc-dcae-fe"
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010096 port: 9444
97 config:
Sylvain Desbureaux71392032020-05-06 15:24:04 +020098 ssl: "redirect"
Areli, Fuss (af732p)307fdc72018-05-29 14:40:03 +030099# Resource Limit flavor -By Default using small
100flavor: small
101# Segregation for Different environment (Small and Large)
102resources:
103 small:
104 limits:
105 cpu: 1
106 memory: 4Gi
107 requests:
108 cpu: 10m
109 memory: 1Gi
110 large:
111 limits:
112 cpu: 2
113 memory: 8Gi
114 requests:
115 cpu: 20m
116 memory: 2Gi
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +0000117 unlimited: {}