blob: 45cbcd617af4c6b55b06204973343693cf97d342 [file] [log] [blame]
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T, ZTE
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +00003#
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#################################################################
19global:
20 nodePortPrefix: 302
ChrisC742a7b22020-09-04 11:29:57 +020021 aafEnabled: true
22 persistence: {}
Andreas Geisslerfd450c42021-12-10 08:36:45 +000023 sdc_cassandra:
ChrisC742a7b22020-09-04 11:29:57 +020024 #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#################################################################
38certInitializer:
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
Sylvain Desbureaux575743d2021-02-23 16:38:07 +010054 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
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000057
58#################################################################
59# Application configuration defaults.
60#################################################################
61# application image
MichaelMorrisbc0e3f02022-09-29 09:35:43 +010062image: onap/sdc-onboard-backend:1.11.9
63onboardingInitImage: onap/sdc-onboard-cassandra-init:1.11.9
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000064pullPolicy: Always
65
66# flag to enable debugging - application support required
67debugEnabled: false
68
69config:
r.bogackib17ce792019-09-03 10:23:24 +020070 javaOptions: "-Xmx1g -Xms1g"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000071 cassandraSslEnabled: "false"
72
ChrisC742a7b22020-09-04 11:29:57 +020073#environment file
74env:
75 name: AUTO
76
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000077# default number of instances
78replicaCount: 1
79
80nodeSelector: {}
81
82affinity: {}
83
84# probe configuration parameters
85liveness:
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020086 initialDelaySeconds: 1
87 periodSeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050088 timeoutSeconds: 15
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020089 successThreshold: 1
90 failureThreshold: 3
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000091 # necessary to disable liveness probe when setting breakpoints
92 # in debugger so K8s doesn't restart unresponsive container
93 enabled: true
94
95readiness:
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020096 initialDelaySeconds: 1
97 periodSeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050098 timeoutSeconds: 15
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020099 successThreshold: 1
100 failureThreshold: 3
101
102startup:
103 initialDelaySeconds: 10
104 periodSeconds: 10
105 timeoutSeconds: 15
106 successThreshold: 1
107 failureThreshold: 60
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000108
109service:
110 type: ClusterIP
111 name: sdc-onboarding-be
othman touijer2b764d02022-01-05 14:40:37 +0100112 portName: http
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000113 internalPort: 8445
114 externalPort: 8445
othman touijer2b764d02022-01-05 14:40:37 +0100115
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000116 internalPort2: 8081
117 externalPort2: 8081
118
119## Persist data to a persitent volume
120persistence:
121 enabled: true
122
123 ## A manually managed Persistent Volume and Claim
124 ## Requires persistence.enabled: true
125 ## If defined, PVC must be created manually before volume will be bound
126 # existingClaim:
127 volumeReclaimPolicy: Retain
128
129 ## database data Persistent Volume Storage Class
130 ## If defined, storageClassName: <storageClass>
131 ## If set to "-", storageClassName: "", which disables dynamic provisioning
132 ## If undefined (the default) or set to null, no storageClassName spec is
133 ## set, choosing the default provisioner. (gp2 on AWS, standard on
134 ## GKE, AWS & OpenStack)
135 ##
136 # storageClass: "-"
Sylvain Desbureaux71a9fb32019-09-02 15:50:28 +0200137 accessMode: ReadWriteOnce
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000138 size: 2Gi
139 mountPath: /dockerdata-nfs
140 mountSubPath: /sdc/sdc-cs/CS
141
kooper543d3aa2019-05-02 10:27:15 +0000142##Certificate storage persistence
143##This is temporary solution for SDC-1980
144cert:
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +0200145 certDir: /app/jetty/cert
kooper543d3aa2019-05-02 10:27:15 +0000146 persistence:
147 enabled: true
148 size: 10Mi
Sylvain Desbureauxc8f45bb2020-01-23 11:55:37 +0100149 accessMode: ReadWriteOnce
kooper543d3aa2019-05-02 10:27:15 +0000150 volumeReclaimPolicy: Retain
151 mountSubPath: /sdc/onbaording/cert
152
MichaelMorris276812c2020-04-28 09:34:17 +0100153securityContext:
154 fsGroup: 35953
155 runAsUser: 352070
kooper543d3aa2019-05-02 10:27:15 +0000156
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +0000157ingress:
158 enabled: false
159
Mukula93baa82018-09-19 15:56:58 +0000160# Resource Limit flavor -By Default using small
161flavor: small
162# Segregation for Different environment (Small and Large)
163resources:
164 small:
165 limits:
ChrisC32172342020-10-02 16:39:13 +0200166 cpu: 500m
167 memory: 2Gi
Mukula93baa82018-09-19 15:56:58 +0000168 requests:
ChrisC32172342020-10-02 16:39:13 +0200169 cpu: 40m
Mukula93baa82018-09-19 15:56:58 +0000170 memory: 1Gi
171 large:
172 limits:
ChrisC32172342020-10-02 16:39:13 +0200173 cpu: 1
174 memory: 4Gi
Mukula93baa82018-09-19 15:56:58 +0000175 requests:
ChrisC32172342020-10-02 16:39:13 +0200176 cpu: 80m
Mukula93baa82018-09-19 15:56:58 +0000177 memory: 2Gi
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +0000178 unlimited: {}
farida azmy1383b4c2021-04-06 12:33:31 +0200179
180#Pods Service Account
181serviceAccount:
182 nameOverride: sdc-onboarding-be
183 roles:
184 - read
Maciej Wereski771ec2a2021-10-14 13:59:12 +0000185
othman touijer2b764d02022-01-05 14:40:37 +0100186wait_for_job_container:
187 containers:
188 - '{{ include "common.name" . }}-job'
189
Maciej Wereski771ec2a2021-10-14 13:59:12 +0000190#Log configuration
191log:
192 path: /var/log/onap
193logConfigMapNamePrefix: '{{ include "common.fullname" . }}'