754899b6723cc76e3b33c05439a6015f28396832
[oom.git] / kubernetes / sdc / charts / sdc-wfd / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24 # application image
25 repository: nexus3.onap.org:10001
26 image: onap/sdc/sdc-workflow-designer:1.1.0-SNAPSHOT-STAGING-latest
27 pullPolicy: Always
28
29 # flag to enable debugging - application support required
30 debugEnabled: false
31
32 # default number of instances
33 replicaCount: 1
34
35 # probe configuration parameters
36 liveness:
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
43 readiness:
44   initialDelaySeconds: 10
45   periodSeconds: 10
46
47 service:
48   type: NodePort
49   name: sdc-wfd
50   portName: sdc-wfd
51   nodePort: "56"
52   internalPort: 8080
53
54 ingress:
55   enabled: false
56