blob: a2f1f0c93c1f9e66228734cb840447bf8e134a15 [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T, ZTE
Mandeep Khindab1f9efe2018-03-28 19:01:55 +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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
Mandeep Khindaa1047f42018-03-22 02:12:15 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: nexus3.onap.org:10001
sebdete1a57e02020-07-08 13:54:01 +020030image: onap/sdc-backend:1.6.7
31backendInitImage: onap/sdc-backend-init:1.6.7
Mandeep Khindaa1047f42018-03-22 02:12:15 +000032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
Mandeep Khinda403c1c12018-04-19 23:15:43 +000037config:
r.bogacki65cb1ac2019-09-03 09:27:24 +020038 javaOptions: "-Xmx1536m -Xms1536m"
Mandeep Khinda403c1c12018-04-19 23:15:43 +000039 cassandraSslEnabled: "false"
40
Mandeep Khindaa1047f42018-03-22 02:12:15 +000041# default number of instances
42replicaCount: 1
43
44nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
Yang Xue5d5e682019-06-19 18:20:31 -040050 initialDelaySeconds: 120
Mandeep Khindaa1047f42018-03-22 02:12:15 +000051 periodSeconds: 10
Yang Xu85608542019-06-16 23:25:32 -040052 timeoutSeconds: 5
Mandeep Khindaa1047f42018-03-22 02:12:15 +000053 # necessary to disable liveness probe when setting breakpoints
54 # in debugger so K8s doesn't restart unresponsive container
gummara72e6de2020-03-12 11:15:56 +000055 port: api
Mandeep Khindaa1047f42018-03-22 02:12:15 +000056 enabled: true
57
58readiness:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000059 initialDelaySeconds: 60
Mandeep Khindaa1047f42018-03-22 02:12:15 +000060 periodSeconds: 10
Yang Xu85608542019-06-16 23:25:32 -040061 timeoutSeconds: 5
Mandeep Khindaa1047f42018-03-22 02:12:15 +000062
63service:
64 type: NodePort
65 name: sdc-be
gummara72e6de2020-03-12 11:15:56 +000066 both_tls_and_plain: true
67 msb:
68 - port: 8080
69 url: "/sdc/v1"
70 version: "v1"
71 protocol: "REST"
72 visualRange: "1"
73 serviceName: sdc
74 - port: 8080
75 url: "/sdc/v1"
76 version: "v1"
77 protocol: "REST"
78 visualRange: "1"
79 serviceName: sdc-deprecated
80 ports:
81 - name: api
82 port: 8443
83 plain_port: 8080
84 port_protocol: http
85 nodePort: '04'
Mandeep Khindaa1047f42018-03-22 02:12:15 +000086
87ingress:
88 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010089 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +000090 - baseaddr: "sdc.api.be"
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010091 name: "sdc-be"
gummara72e6de2020-03-12 11:15:56 +000092 port: 8443
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010093 config:
gummara72e6de2020-03-12 11:15:56 +000094 ssl: "redirect"
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010095
Mandeep Khindaa1047f42018-03-22 02:12:15 +000096
Mukula93baa82018-09-19 15:56:58 +000097# Resource Limit flavor -By Default using small
98flavor: small
99# Segregation for Different environment (Small and Large)
100resources:
101 small:
102 limits:
103 cpu: 1
104 memory: 4Gi
105 requests:
106 cpu: 10m
107 memory: 1Gi
108 large:
109 limits:
110 cpu: 2
111 memory: 8Gi
112 requests:
113 cpu: 20m
114 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000115 unlimited: {}