Merge "Removal of zookeeper from portal HELM charts"
[oom.git] / kubernetes / sdc / components / sdc-dcae-be / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessImage: onap/oom/readiness:3.0.1
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23   aafEnabled: true
24
25 #################################################################
26 # AAF Part
27 #################################################################
28 certInitializer:
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
47
48 #################################################################
49 # Application configuration defaults.
50 #################################################################
51 # application image
52 repository: nexus3.onap.org:10001
53 image: onap/dcae-be:1.3.4
54 pullPolicy: Always
55 backendInitImage: onap/dcae-tools:1.3.4
56
57 # flag to enable debugging - application support required
58 debugEnabled: false
59
60 #environment file
61 env:
62   name: AUTO
63
64 config:
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
69 replicaCount: 1
70
71 nodeSelector: {}
72
73 affinity: {}
74
75 # probe configuration parameters
76 liveness:
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
83 readiness:
84   initialDelaySeconds: 240
85   periodSeconds: 10
86
87 service:
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
97 ingress:
98   enabled: false
99   service:
100     - baseaddr: "sdc.dcae.plugin"
101       name: "sdc-dcae-be"
102       port: 8282
103   config:
104     ssl: "none"
105
106 # Resource Limit flavor -By Default using small
107 flavor: small
108 # Segregation for Different environment (Small and Large)
109 resources:
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
124   unlimited: {}