blob: 762d6c3c243a8eac67664088c6846b32c9f31297 [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
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
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
Sonsino, Ofir (os0695)70b88dd2019-02-06 15:14:05 +020031image: onap/sdc-frontend:1.4-STAGING-latest
Mandeep Khindaa1047f42018-03-22 02:12:15 +000032pullPolicy: Always
33
Mandeep Khinda403c1c12018-04-19 23:15:43 +000034config:
35 javaOptions: "-Xdebug -agentlib:jdwp=transport=dt_socket,address=6000,server=y,suspend=n -Xmx256m -Xms256m"
shrikantawachar0c84bc32019-01-16 13:12:21 +053036 plugins:
37 dcae_discovery_url: "http://sdc-dcae-fe:8183/dcaed/#/home"
38 dcae_source_url: "http://sdc.dcae.plugin.simpledemo.onap.org:30263/dcaed/#/home"
39 dcae_dt_discovery_url: "http://sdc-dcae-dt:8186/dcae/#/dcae/home"
40 dcae_dt_source_url: "http://sdc.dcae.plugin.simpledemo.onap.org:30265/dcae/#/dcae/home"
41 workflow_discovery_url: "http://sdc-wfd-fe:8080"
42 workflow_source_url: "http://sdc.workflow.plugin.simpledemo.onap.org:30256"
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
54 periodSeconds: 10
55 # 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
61 periodSeconds: 10
62
63service:
64 #Example service definition with external, internal and node ports.
65 #Services may use any combination of ports depending on the 'type' of
66 #service being defined.
67 type: NodePort
68 name: sdc-fe
BorislavG1ffbd992018-04-24 07:56:27 +000069 portName: sdc-fe
Mandeep Khindaa1047f42018-03-22 02:12:15 +000070 nodePort: "06"
71 internalPort: 8181
Mandeep Khindafe527eb2018-10-16 09:56:34 -040072 externalPort: 8181
Mandeep Khindaa1047f42018-03-22 02:12:15 +000073 nodePort2: "07"
74 internalPort2: 9443
Mandeep Khindafe527eb2018-10-16 09:56:34 -040075 externalPort2: 9443
Mandeep Khindaa1047f42018-03-22 02:12:15 +000076
77
78
79ingress:
80 enabled: false
81
Mukula93baa82018-09-19 15:56:58 +000082# Resource Limit flavor -By Default using small
83flavor: small
84# Segregation for Different environment (Small and Large)
85resources:
86 small:
87 limits:
88 cpu: 1
89 memory: 4Gi
90 requests:
91 cpu: 10m
92 memory: 1Gi
93 large:
94 limits:
95 cpu: 2
96 memory: 8Gi
97 requests:
98 cpu: 20m
99 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000100 unlimited: {}