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