[SDC] Add missing dependency to cassandra chart
[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   sdc_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     echo "cadi_keystore_password_p12=$cadi_keystore_password_p12" > {{ .Values.credsPath }}/mycreds.prop
55     echo "cadi_truststore_password=$cadi_truststore_password" >> {{ .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 # probe configuration parameters
105 liveness:
106   initialDelaySeconds: 1
107   periodSeconds: 10
108   successThreshold: 1
109   failureThreshold: 3
110   # necessary to disable liveness probe when setting breakpoints
111   # in debugger so K8s doesn't restart unresponsive container
112   enabled: true
113
114 readiness:
115   initialDelaySeconds: 1
116   periodSeconds: 10
117   successThreshold: 1
118   failureThreshold: 3
119
120 startup:
121   initialDelaySeconds: 10
122   periodSeconds: 10
123   successThreshold: 1
124   failureThreshold: 60
125
126 service:
127   type: NodePort
128   portName: sdc-wfd-be
129   internalPort: 8080
130   externalPort: 8080
131   internalPort2: 8443
132   externalPort2: 8443
133   nodePort: "57" # only one node port. set to http or https port depending on isHttpsEnabled property
134
135 ingress:
136   enabled: false
137   service:
138     - baseaddr: "sdcwfdbe"
139       name: "sdc-wfd-be"
140       port: 8443
141   config:
142     ssl: "redirect"
143
144 # Resource Limit flavor -By Default using small
145 # Segregation for Different environment (Small and Large)
146 flavor: small
147 resources:
148   small:
149     limits:
150       cpu: 500m
151       memory: 2Gi
152     requests:
153       cpu: 40m
154       memory: 1Gi
155   large:
156     limits:
157       cpu: 1
158       memory: 4Gi
159     requests:
160       cpu: 80m
161       memory: 2Gi
162   unlimited: {}
163
164 #Pods Service Account
165 serviceAccount:
166   nameOverride: sdc-wfd-be
167   roles:
168     - read