Support execution control of SDC Workflow init
[oom.git] / kubernetes / sdc / charts / sdc-wfd-be / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, ZTE
3 #
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
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   initJob:
26     enabled: true
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 # application image
32 repository: nexus3.onap.org:10001
33 image: onap/workflow-backend:1.4.0-SNAPSHOT
34 configInitImage: onap/workflow-init:1.4.0-SNAPSHOT
35 pullPolicy: Always
36
37 # flag to enable debugging - application support required
38 debugEnabled: false
39
40 config:
41   javaOptions: "-Xdebug -agentlib:jdwp=transport=dt_socket,address=7001,server=y,suspend=n -Xmx1536m -Xms1536m"
42   cassandaAuthenticationEnabled: true
43   cassandraHosts: sdc-cs
44   cassandraThriftClientPort: 9160
45   cassandraClientPort: 9042
46   sdcProtocol: HTTP
47   sdcEndpoint: sdc-be:8080
48   sdcExternalUser: workflow
49   sdcExternalUserPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
50
51 # default number of instances
52 replicaCount: 1
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 60
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65
66 readiness:
67   initialDelaySeconds: 60
68   periodSeconds: 10
69
70 service:
71   type: NodePort
72   internalPort: 8080
73   externalPort: 8080
74   portName: sdc-wfd-be
75   nodePort: "57"
76
77 ingress:
78   enabled: false
79
80 resources: {}
81   # We usually recommend not to specify default resources and to leave this as a conscious
82   # choice for the user. This also increases chances charts run on environments with little
83   # resources, such as Minikube. If you do want to specify resources, uncomment the following
84   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
85   #
86   # Example:
87   # Configure resource requests and limits
88   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
89   # Minimum memory for development is 2 CPU cores and 4GB memory
90   # Minimum memory for production is 4 CPU cores and 8GB memory
91 #resources:
92 #  limits:
93 #    cpu: 2
94 #    memory: 4Gi
95 #  requests:
96 #    cpu: 2
97 #    memory: 4Gi