blob: 057ebbe058e40b7c7ff028d38531786934fd391c [file] [log] [blame]
priyanshu3af9db62018-08-16 16:23:52 +05301# Copyright © 2018 Amdocs, Bell Canada
priyanshua1b061392018-05-29 12:50:14 +05302#
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 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
29repository: nexus3.onap.org:10001
priyanshu3af9db62018-08-16 16:23:52 +053030image: onap/workflow-backend:1.3.0-SNAPSHOT
31configInitImage: onap/workflow-init:1.3.0-SNAPSHOT
priyanshua1b061392018-05-29 12:50:14 +053032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37config:
priyanshu3af9db62018-08-16 16:23:52 +053038 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
priyanshua1b061392018-05-29 12:50:14 +053045
46# default number of instances
47replicaCount: 1
48
49nodeSelector: {}
50
51affinity: {}
52
53# probe configuration parameters
54liveness:
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
61readiness:
62 initialDelaySeconds: 60
63 periodSeconds: 10
64
65service:
66 type: NodePort
67 internalPort: 8080
68 externalPort: 8080
priyanshu3af9db62018-08-16 16:23:52 +053069 portName: sdc-wfd-be
priyanshua1b061392018-05-29 12:50:14 +053070 nodePort: "57"
71
72ingress:
73 enabled: false
74
75resources: {}
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