[SDC] Update SDC to 1.9.5
[oom.git] / kubernetes / sdc / components / sdc-onboarding-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   persistence: {}
23   cassandra:
24     #This flag allows SDC to instantiate its own cluster, serviceName
25     #should be sdc-cs if this flag is enabled
26     localCluster: false
27     #The cassandra service name to connect to (default: shared cassandra service)
28     serviceName: cassandra
29     #Shared cassandra cluster replicaCount, should be changed if localCluster is enabled
30     #to match with its own cluster replica
31     replicaCount: 3
32     clusterName: cassandra
33     dataCenter: Pod
34
35 #################################################################
36 # AAF Part
37 #################################################################
38 certInitializer:
39   nameOverride: sdc-onboarding-be-cert-init
40   aafDeployFqi: deployer@people.osaaf.org
41   aafDeployPass: demo123456!
42   fqdn: sdc
43   fqi: sdc@sdc.onap.org
44   public_fqdn: sdc.onap.org
45   cadi_longitude: "0.0"
46   cadi_latitude: "0.0"
47   app_ns: org.osaaf.aaf
48   credsPath: /opt/app/osaaf/local
49   addconfig: true
50   keystoreFile: "org.onap.sdc.p12"
51   truststoreFile: "org.onap.sdc.trust.jks"
52   permission_user: 352070
53   permission_group: 35953
54   aaf_add_config: |
55     echo "cadi_keystore_password_p12=$cadi_keystore_password_p12" > {{ .Values.credsPath }}/mycreds.prop
56     echo "cadi_truststore_password=$cadi_truststore_password" >> {{ .Values.credsPath }}/mycreds.prop
57
58 #################################################################
59 # Application configuration defaults.
60 #################################################################
61 # application image
62 image: onap/sdc-onboard-backend:1.9.5
63 onboardingInitImage: onap/sdc-onboard-cassandra-init:1.9.5
64 pullPolicy: Always
65
66 # flag to enable debugging - application support required
67 debugEnabled: false
68
69 config:
70   javaOptions: "-Xmx1g -Xms1g"
71   cassandraSslEnabled: "false"
72
73 #environment file
74 env:
75   name: AUTO
76
77 # default number of instances
78 replicaCount: 1
79
80 nodeSelector: {}
81
82 affinity: {}
83
84 # probe configuration parameters
85 liveness:
86   initialDelaySeconds: 1
87   periodSeconds: 10
88   timeoutSeconds: 15
89   successThreshold: 1
90   failureThreshold: 3
91   # necessary to disable liveness probe when setting breakpoints
92   # in debugger so K8s doesn't restart unresponsive container
93   enabled: true
94
95 readiness:
96   initialDelaySeconds: 1
97   periodSeconds: 10
98   timeoutSeconds: 15
99   successThreshold: 1
100   failureThreshold: 3
101
102 startup:
103   initialDelaySeconds: 10
104   periodSeconds: 10
105   timeoutSeconds: 15
106   successThreshold: 1
107   failureThreshold: 60
108
109 service:
110   type: ClusterIP
111   name: sdc-onboarding-be
112   portName: sdc-onboarding-be
113   internalPort: 8445
114   externalPort: 8445
115   internalPort2: 8081
116   externalPort2: 8081
117
118 ## Persist data to a persitent volume
119 persistence:
120   enabled: true
121
122   ## A manually managed Persistent Volume and Claim
123   ## Requires persistence.enabled: true
124   ## If defined, PVC must be created manually before volume will be bound
125   # existingClaim:
126   volumeReclaimPolicy: Retain
127
128   ## database data Persistent Volume Storage Class
129   ## If defined, storageClassName: <storageClass>
130   ## If set to "-", storageClassName: "", which disables dynamic provisioning
131   ## If undefined (the default) or set to null, no storageClassName spec is
132   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
133   ##   GKE, AWS & OpenStack)
134   ##
135   # storageClass: "-"
136   accessMode: ReadWriteOnce
137   size: 2Gi
138   mountPath: /dockerdata-nfs
139   mountSubPath: /sdc/sdc-cs/CS
140
141 ##Certificate storage persistence
142 ##This is temporary solution for SDC-1980
143 cert:
144   certDir: /app/jetty/cert
145   persistence:
146     enabled: true
147     size: 10Mi
148     accessMode: ReadWriteOnce
149     volumeReclaimPolicy: Retain
150     mountSubPath: /sdc/onbaording/cert
151
152 securityContext:
153   fsGroup: 35953
154   runAsUser: 352070
155
156 ingress:
157   enabled: false
158
159 # Resource Limit flavor -By Default using small
160 flavor: small
161 # Segregation for Different environment (Small and Large)
162 resources:
163   small:
164     limits:
165       cpu: 500m
166       memory: 2Gi
167     requests:
168       cpu: 40m
169       memory: 1Gi
170   large:
171     limits:
172       cpu: 1
173       memory: 4Gi
174     requests:
175       cpu: 80m
176       memory: 2Gi
177   unlimited: {}
178
179 #Pods Service Account
180 serviceAccount:
181   nameOverride: sdc-onboarding-be
182   roles:
183     - read
184
185 #Log configuration
186 log:
187   path: /var/log/onap
188 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'