Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / sdc / components / sdc-wfd-be / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, ZTE
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   aafEnabled: true
22   cassandra:
23     #This flag allows SDC to instantiate its own cluster, serviceName
24     #should be sdc-cs if this flag is enabled
25     localCluster: false
26     #The cassandra service name to connect to (default: shared cassandra service)
27     serviceName: cassandra
28     #Shared cassandra cluster replicaCount, should be changed if localCluster is enabled
29     #to match with its own cluster replica
30     replicaCount: 3
31     clusterName: cassandra
32     dataCenter: Pod
33
34 #################################################################
35 # AAF Part
36 #################################################################
37 certInitializer:
38   nameOverride: sdc-wfd-be-cert-init
39   aafDeployFqi: deployer@people.osaaf.org
40   aafDeployPass: demo123456!
41   fqdn: sdc
42   fqi: sdc@sdc.onap.org
43   public_fqdn: sdc.onap.org
44   cadi_longitude: "0.0"
45   cadi_latitude: "0.0"
46   app_ns: org.osaaf.aaf
47   credsPath: /opt/app/osaaf/local
48   addconfig: true
49   keystoreFile: "org.onap.sdc.p12"
50   truststoreFile: "org.onap.sdc.trust.jks"
51   permission_user: 352070
52   permission_group: 35953
53   aaf_add_config: >
54     /opt/app/aaf_config/bin/agent.sh local showpass
55     {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop
56
57 #################################################################
58 # Application configuration defaults.
59 #################################################################
60 # application image
61 image: onap/sdc-workflow-backend:1.7.0
62 configInitImage: onap/sdc-workflow-init:1.7.0
63 pullPolicy: Always
64
65 initJob:
66   enabled: true
67
68 config:
69   javaOptions: "-Xmx1536m -Xms1536m"
70   cassandraAuthenticationEnabled: true
71   cassandraClientPort: 9042
72   sdcProtocol: HTTPS
73   sdcEndpoint: sdc-be:8443
74   sdcExternalUser: workflow
75   serverSSLEnabled: true
76   serverSSLKeyStoreType: jks
77   serverSSLTrustStoreType: jks
78   cassandraSSLEnabled: false
79   cassandraTrustStorePath: /home/sdc/etc/truststore
80
81 # environment file
82 env:
83   name: AUTO
84
85 # default number of instances
86 replicaCount: 1
87
88 nodeSelector: {}
89
90 affinity: {}
91
92 # probe configuration parameters
93 liveness:
94   initialDelaySeconds: 60
95   periodSeconds: 10
96   # necessary to disable liveness probe when setting breakpoints
97   # in debugger so K8s doesn't restart unresponsive container
98   enabled: true
99
100 readiness:
101   initialDelaySeconds: 60
102   periodSeconds: 10
103
104 service:
105   type: NodePort
106   portName: sdc-wfd-be
107   internalPort: 8080
108   externalPort: 8080
109   internalPort2: 8443
110   externalPort2: 8443
111   nodePort: "57" # only one node port. set to http or https port depending on isHttpsEnabled property
112
113 ingress:
114   enabled: false
115   service:
116     - baseaddr: "sdcwfdbe"
117       name: "sdc-wfd-be"
118       port: 8443
119   config:
120     ssl: "redirect"
121
122 # Resource Limit flavor -By Default using small
123 # Segregation for Different environment (Small and Large)
124 flavor: small
125 resources:
126   small:
127     limits:
128       cpu: 500m
129       memory: 2Gi
130     requests:
131       cpu: 40m
132       memory: 1Gi
133   large:
134     limits:
135       cpu: 1
136       memory: 4Gi
137     requests:
138       cpu: 80m
139       memory: 2Gi
140   unlimited: {}