blob: d678f5d64bf3a94787aaf787870f997f7d852d5a [file] [log] [blame]
YuanHu1ed842d2018-04-03 17:20:27 +08001# Copyright © 2018 ZTE
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
25repository: nexus3.onap.org:10001
Mandeep Khinda80684462018-04-10 15:32:55 +000026image: onap/sdc/sdc-workflow-designer:1.1.0-SNAPSHOT-STAGING-latest
YuanHu1ed842d2018-04-03 17:20:27 +080027pullPolicy: Always
28
29# flag to enable debugging - application support required
30debugEnabled: false
31
32# default number of instances
33replicaCount: 1
34
35# probe configuration parameters
36liveness:
37 initialDelaySeconds: 10
38 periodSeconds: 10
39 # necessary to disable liveness probe when setting breakpoints
40 # in debugger so K8s doesn't restart unresponsive container
41 enabled: true
42
43readiness:
44 initialDelaySeconds: 10
45 periodSeconds: 10
46
47service:
48 type: NodePort
49 name: sdc-wfd
50 nodePort: "56"
51 internalPort: 8080
52
53ingress:
54 enabled: false
55