Merge "[SDC] Update docker images"
[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.12.3
39 onboardingInitImage: onap/sdc-onboard-cassandra-init:1.12.3
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 ## Persist data to a persitent volume
94 persistence:
95   enabled: true
96
97   ## A manually managed Persistent Volume and Claim
98   ## Requires persistence.enabled: true
99   ## If defined, PVC must be created manually before volume will be bound
100   # existingClaim:
101   volumeReclaimPolicy: Retain
102
103   ## database data Persistent Volume Storage Class
104   ## If defined, storageClassName: <storageClass>
105   ## If set to "-", storageClassName: "", which disables dynamic provisioning
106   ## If undefined (the default) or set to null, no storageClassName spec is
107   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
108   ##   GKE, AWS & OpenStack)
109   ##
110   # storageClass: "-"
111   accessMode: ReadWriteOnce
112   size: 2Gi
113   mountPath: /dockerdata-nfs
114   mountSubPath: /sdc/sdc-cs/CS
115
116 securityContext:
117   fsGroup: 35953
118   runAsUser: 352070
119
120 ingress:
121   enabled: false
122
123 # Resource Limit flavor -By Default using small
124 flavor: small
125 # Segregation for Different environment (Small and Large)
126 resources:
127   small:
128     limits:
129       cpu: 500m
130       memory: 2Gi
131     requests:
132       cpu: 40m
133       memory: 1Gi
134   large:
135     limits:
136       cpu: 1
137       memory: 4Gi
138     requests:
139       cpu: 80m
140       memory: 2Gi
141   unlimited: {}
142
143 #Pods Service Account
144 serviceAccount:
145   nameOverride: sdc-onboarding-be
146   roles:
147     - read
148
149 wait_for_job_container:
150   containers:
151     - '{{ include "common.name" . }}-job'
152
153 #Log configuration
154 log:
155   path: /var/log/onap
156 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'