blob: 63c8ce7e724c8d9d3c52a88a4001c4aea32c4a6f [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-frontend:1.6.7
Mandeep Khindaa1047f42018-03-22 02:12:15 +000031pullPolicy: Always
32
Mandeep Khinda403c1c12018-04-19 23:15:43 +000033config:
r.bogackic535c932019-09-03 10:34:12 +020034 javaOptions: "-Xmx256m -Xms256m"
shrikantawachar0c84bc32019-01-16 13:12:21 +053035 plugins:
k.kedronc784bbd2019-09-05 18:28:16 +020036 dcae_discovery_url: "https://sdc-dcae-fe:9444/dcaed/#/home"
37 dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home"
38 dcae_dt_discovery_url: "https://sdc-dcae-dt:9446/dcae/#/dcae/home"
39 dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home"
IlanaPc80bff92019-11-18 21:10:08 +020040 workflow_discovery_url: "https://sdc-wfd-fe:8443/workflows"
41 workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30256/workflows/"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000042
43# default number of instances
44replicaCount: 1
45
46nodeSelector: {}
47
48affinity: {}
49
50# probe configuration parameters
51liveness:
52 initialDelaySeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050053 periodSeconds: 60
54 timeoutSeconds: 15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000055 # necessary to disable liveness probe when setting breakpoints
56 # in debugger so K8s doesn't restart unresponsive container
57 enabled: true
58
59readiness:
60 initialDelaySeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050061 periodSeconds: 60
62 timeoutSeconds: 15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000063
64service:
65 #Example service definition with external, internal and node ports.
66 #Services may use any combination of ports depending on the 'type' of
67 #service being defined.
68 type: NodePort
69 name: sdc-fe
BorislavG1ffbd992018-04-24 07:56:27 +000070 portName: sdc-fe
Mandeep Khindaa1047f42018-03-22 02:12:15 +000071 nodePort: "06"
72 internalPort: 8181
Mandeep Khindafe527eb2018-10-16 09:56:34 -040073 externalPort: 8181
Mandeep Khindaa1047f42018-03-22 02:12:15 +000074 nodePort2: "07"
75 internalPort2: 9443
Mandeep Khindafe527eb2018-10-16 09:56:34 -040076 externalPort2: 9443
Mandeep Khindaa1047f42018-03-22 02:12:15 +000077
78
79
80ingress:
81 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010082 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +000083 - baseaddr: "sdc.api.fe"
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010084 name: "sdc-fe"
85 port: 9443
86 config:
87 ssl: "redirect"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000088
Mukula93baa82018-09-19 15:56:58 +000089# Resource Limit flavor -By Default using small
90flavor: small
91# Segregation for Different environment (Small and Large)
92resources:
93 small:
94 limits:
95 cpu: 1
96 memory: 4Gi
97 requests:
98 cpu: 10m
99 memory: 1Gi
100 large:
101 limits:
102 cpu: 2
103 memory: 8Gi
104 requests:
105 cpu: 20m
106 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000107 unlimited: {}