Merge "[AAI] Add model-loader tracing config"
[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   persistence: {}
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 # Application configuration defaults.
36 #################################################################
37 # application image
38 image: onap/sdc-onboard-backend:1.13.6
39 onboardingInitImage: onap/sdc-onboard-cassandra-init:1.13.6
40 pullPolicy: Always
41
42 # flag to enable debugging - application support required
43 debugEnabled: false
44
45 config:
46   javaOptions: "-Xmx1g -Xms1g"
47   cassandraSslEnabled: "false"
48
49 #environment file
50 env:
51   name: AUTO
52
53 # default number of instances
54 replicaCount: 1
55
56 nodeSelector: {}
57
58 affinity: {}
59
60 # probe configuration parameters
61 liveness:
62   initialDelaySeconds: 1
63   periodSeconds: 10
64   timeoutSeconds: 15
65   successThreshold: 1
66   failureThreshold: 3
67   # necessary to disable liveness probe when setting breakpoints
68   # in debugger so K8s doesn't restart unresponsive container
69   enabled: true
70
71 readiness:
72   initialDelaySeconds: 1
73   periodSeconds: 10
74   timeoutSeconds: 15
75   successThreshold: 1
76   failureThreshold: 3
77
78 startup:
79   initialDelaySeconds: 10
80   periodSeconds: 10
81   timeoutSeconds: 15
82   successThreshold: 1
83   failureThreshold: 60
84
85 service:
86   type: ClusterIP
87   name: sdc-onboarding-be
88   internalPort: 8081
89   ports:
90     - name: http
91       port: 8081
92
93 serviceMesh:
94   authorizationPolicy:
95     authorizedPrincipals:
96       - serviceAccount: sdc-be-read
97
98 ## Persist data to a persitent volume
99 persistence:
100   enabled: true
101
102   ## A manually managed Persistent Volume and Claim
103   ## Requires persistence.enabled: true
104   ## If defined, PVC must be created manually before volume will be bound
105   # existingClaim:
106   volumeReclaimPolicy: Retain
107
108   ## database data Persistent Volume Storage Class
109   ## If defined, storageClassName: <storageClass>
110   ## If set to "-", storageClassName: "", which disables dynamic provisioning
111   ## If undefined (the default) or set to null, no storageClassName spec is
112   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
113   ##   GKE, AWS & OpenStack)
114   ##
115   # storageClass: "-"
116   accessMode: ReadWriteOnce
117   size: 2Gi
118   mountPath: /dockerdata-nfs
119   mountSubPath: /sdc/sdc-cs/CS
120
121 securityContext:
122   fsGroup: 35953
123   runAsUser: 352070
124
125 ingress:
126   enabled: false
127
128 # Resource Limit flavor -By Default using small
129 flavor: small
130 # Segregation for Different environment (Small and Large)
131 resources:
132   small:
133     limits:
134       cpu: "1"
135       memory: "1.5Gi"
136     requests:
137       cpu: "0.5"
138       memory: "1.5Gi"
139   large:
140     limits:
141       cpu: "2"
142       memory: "3Gi"
143     requests:
144       cpu: "1"
145       memory: "3Gi"
146   unlimited: {}
147
148 #Pods Service Account
149 serviceAccount:
150   nameOverride: sdc-onboarding-be
151   roles:
152     - read
153
154 wait_for_job_container:
155   containers:
156     - '{{ include "common.name" . }}-job'
157
158 #Log configuration
159 log:
160   path: /var/log/onap
161 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'