Merge "Removal of zookeeper from portal HELM charts"
[oom.git] / kubernetes / sdc / components / sdc-dcae-dt / values.yaml
1 # 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 #################################################################
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-dt-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-dt:1.3.4
54 pullPolicy: IfNotPresent
55 config:
56   javaOptions: -XX:MaxPermSize=256m -Xmx1024m -Dconfig.home=config -Dlog.home=/var/lib/jetty/logs/ -Dlogging.config=config/dcae-dt/logback-spring.xml
57
58 #environment file
59 env:
60   name: AUTO
61
62 # default number of instances
63 replicaCount: 1
64
65 nodeSelector: {}
66
67 affinity: {}
68
69 # probe configuration parameters
70 liveness:
71   initialDelaySeconds: 10
72   periodSeconds: 10
73   enabled: false
74
75 readiness:
76   initialDelaySeconds: 10
77   periodSeconds: 10
78
79 service:
80   type: NodePort
81   name: sdc-dcae-dt
82   portName: dcae-dt
83   nodePort: "66"
84   internalPort: 9446
85
86 ingress:
87   enabled: false
88   service:
89     - baseaddr: "dcaedt"
90       name: "sdc-dcae-dt"
91       port: 9446
92   config:
93     ssl: "redirect"
94
95 # Resource Limit flavor -By Default using small
96 flavor: small
97 # Segregation for Different environment (Small and Large)
98 resources:
99   small:
100     limits:
101       cpu: 1
102       memory: 4Gi
103     requests:
104       cpu: 10m
105       memory: 1Gi
106   large:
107     limits:
108       cpu: 2
109       memory: 8Gi
110     requests:
111       cpu: 20m
112       memory: 2Gi
113   unlimited: {}