blob: 8878f1a0b63e8e76052cb9f58df089fccc17c13b [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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000021 readinessRepository: oomk8s
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000022 readinessImage: readiness-check:2.0.2
Mandeep Khindaa1047f42018-03-22 02:12:15 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
k.kedronc784bbd2019-09-05 18:28:16 +020031image: onap/sdc-frontend:1.5.2
Mandeep Khindaa1047f42018-03-22 02:12:15 +000032pullPolicy: Always
33
Mandeep Khinda403c1c12018-04-19 23:15:43 +000034config:
r.bogackic535c932019-09-03 10:34:12 +020035 javaOptions: "-Xmx256m -Xms256m"
shrikantawachar0c84bc32019-01-16 13:12:21 +053036 plugins:
k.kedronc784bbd2019-09-05 18:28:16 +020037 dcae_discovery_url: "https://sdc-dcae-fe:9444/dcaed/#/home"
38 dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home"
39 dcae_dt_discovery_url: "https://sdc-dcae-dt:9446/dcae/#/dcae/home"
40 dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home"
shrikantawachar40aeadf2019-02-19 18:28:54 +053041 workflow_discovery_url: "http://sdc-wfd-fe:8080/workflows"
dfx1971e8246b52019-05-23 12:07:39 +030042 workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30431/workflows/"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000043
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050054 periodSeconds: 60
55 timeoutSeconds: 15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000056 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
58 enabled: true
59
60readiness:
61 initialDelaySeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050062 periodSeconds: 60
63 timeoutSeconds: 15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000064
65service:
66 #Example service definition with external, internal and node ports.
67 #Services may use any combination of ports depending on the 'type' of
68 #service being defined.
69 type: NodePort
70 name: sdc-fe
BorislavG1ffbd992018-04-24 07:56:27 +000071 portName: sdc-fe
Mandeep Khindaa1047f42018-03-22 02:12:15 +000072 nodePort: "06"
73 internalPort: 8181
Mandeep Khindafe527eb2018-10-16 09:56:34 -040074 externalPort: 8181
Mandeep Khindaa1047f42018-03-22 02:12:15 +000075 nodePort2: "07"
76 internalPort2: 9443
Mandeep Khindafe527eb2018-10-16 09:56:34 -040077 externalPort2: 9443
Mandeep Khindaa1047f42018-03-22 02:12:15 +000078
79
80
81ingress:
82 enabled: false
83
Mukula93baa82018-09-19 15:56:58 +000084# Resource Limit flavor -By Default using small
85flavor: small
86# Segregation for Different environment (Small and Large)
87resources:
88 small:
89 limits:
90 cpu: 1
91 memory: 4Gi
92 requests:
93 cpu: 10m
94 memory: 1Gi
95 large:
96 limits:
97 cpu: 2
98 memory: 8Gi
99 requests:
100 cpu: 20m
101 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000102 unlimited: {}