blob: 8737b3319062156521462d8db2227d58ff6dbf00 [file] [log] [blame]
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00001# Copyright © 2017 Amdocs, Bell Canada
2# Modifications Copyright © 2018 AT&T, ZTE
priyanshua1b061392018-05-29 12:50:14 +05303#
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#################################################################
19global:
20 nodePortPrefix: 302
21 readinessRepository: oomk8s
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000022 readinessImage: readiness-check:2.0.2
priyanshua1b061392018-05-29 12:50:14 +053023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
shrikantawachar40aeadf2019-02-19 18:28:54 +053031image: onap/workflow-backend:1.4.0-SNAPSHOT
32configInitImage: onap/workflow-init:1.4.0-SNAPSHOT
priyanshua1b061392018-05-29 12:50:14 +053033pullPolicy: Always
34
35# flag to enable debugging - application support required
36debugEnabled: false
37
priyanshu617e90b2019-03-14 12:56:55 +053038initJob:
39 enabled: true
40
priyanshua1b061392018-05-29 12:50:14 +053041config:
priyanshuc00acbb2018-09-06 11:29:23 +053042 javaOptions: "-Xdebug -agentlib:jdwp=transport=dt_socket,address=7001,server=y,suspend=n -Xmx1536m -Xms1536m"
priyanshubd7fbe22019-03-20 12:45:21 +053043 cassandraAuthenticationEnabled: true
priyanshu3af9db62018-08-16 16:23:52 +053044 cassandraThriftClientPort: 9160
45 cassandraClientPort: 9042
46 sdcProtocol: HTTP
47 sdcEndpoint: sdc-be:8080
priyanshuc00acbb2018-09-06 11:29:23 +053048 sdcExternalUser: workflow
49 sdcExternalUserPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
priyanshubd7fbe22019-03-20 12:45:21 +053050 serverSSLEnabled: false
51 serverSSLKeyStoreType: jks
priyanshu5698c832019-03-26 18:02:33 +053052 serverSSLKeyStorePath: /etc/server-https-keystore/keystore
priyanshubd7fbe22019-03-20 12:45:21 +053053 serverSSLKeyPassword: password
54 cassandraSSLEnabled: false
priyanshu5698c832019-03-26 18:02:33 +053055 cassandraTrustStorePath: /etc/cassandra-client-truststore/truststore
priyanshubd7fbe22019-03-20 12:45:21 +053056 cassandraTrustStorePassword: password
priyanshua1b061392018-05-29 12:50:14 +053057
58# default number of instances
59replicaCount: 1
60
61nodeSelector: {}
62
63affinity: {}
64
65# probe configuration parameters
66liveness:
67 initialDelaySeconds: 60
68 periodSeconds: 10
69 # necessary to disable liveness probe when setting breakpoints
70 # in debugger so K8s doesn't restart unresponsive container
71 enabled: true
72
73readiness:
74 initialDelaySeconds: 60
75 periodSeconds: 10
76
77service:
78 type: NodePort
79 internalPort: 8080
80 externalPort: 8080
priyanshubd7fbe22019-03-20 12:45:21 +053081 internalPort2: 8443
82 externalPort2: 8443
priyanshu3af9db62018-08-16 16:23:52 +053083 portName: sdc-wfd-be
priyanshua1b061392018-05-29 12:50:14 +053084 nodePort: "57"
85
86ingress:
87 enabled: false
88
89resources: {}
90 # We usually recommend not to specify default resources and to leave this as a conscious
91 # choice for the user. This also increases chances charts run on environments with little
92 # resources, such as Minikube. If you do want to specify resources, uncomment the following
93 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
94 #
95 # Example:
96 # Configure resource requests and limits
97 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
98 # Minimum memory for development is 2 CPU cores and 4GB memory
99 # Minimum memory for production is 4 CPU cores and 8GB memory
100#resources:
101# limits:
102# cpu: 2
103# memory: 4Gi
104# requests:
105# cpu: 2
106# memory: 4Gi