[SDC] use of certInitializer template
[oom.git] / kubernetes / sdc / components / sdc-dcae-fe / 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-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
47
48 #################################################################
49 # Application configuration defaults.
50 #################################################################
51 # application image
52 repository: nexus3.onap.org:10001
53 image: onap/dcae-fe:1.3.4
54 pullPolicy: Always
55 config:
56   javaOptions: -XX:MaxPermSize=256m -Xmx1024m -Dconfig.home=config -Dlog.home=/var/lib/jetty/logs/ -Dlogging.config=config/dcae-fe/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   # necessary to disable liveness probe when setting breakpoints
74   # in debugger so K8s doesn't restart unresponsive container
75   enabled: false
76
77 readiness:
78   initialDelaySeconds: 10
79   periodSeconds: 10
80
81 service:
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
88   nodePort: "64"
89   internalPort: 9444
90
91 ingress:
92   enabled: false
93   service:
94     - baseaddr: "dcaedt"
95       name: "sdc-dcae-fe"
96       port: 9444
97   config:
98     ssl: "redirect"
99 # Resource Limit flavor -By Default using small
100 flavor: small
101 # Segregation for Different environment (Small and Large)
102 resources:
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
117   unlimited: {}