blob: 68f487674d6756a87ffabc76f514fbbbd66af814 [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
IlanaPc80bff92019-11-18 21:10:08 +020031image: onap/workflow-backend:1.6.0
32configInitImage: onap/workflow-init:1.6.0
priyanshua1b061392018-05-29 12:50:14 +053033pullPolicy: Always
34
priyanshu617e90b2019-03-14 12:56:55 +053035initJob:
36 enabled: true
37
priyanshua1b061392018-05-29 12:50:14 +053038config:
r.bogacki00bd0862019-09-03 09:22:43 +020039 javaOptions: "-Xmx1536m -Xms1536m"
priyanshubd7fbe22019-03-20 12:45:21 +053040 cassandraAuthenticationEnabled: true
priyanshu3af9db62018-08-16 16:23:52 +053041 cassandraThriftClientPort: 9160
42 cassandraClientPort: 9042
IlanaPc80bff92019-11-18 21:10:08 +020043
r.bogacki08a72d62019-10-01 08:43:44 +020044 sdcProtocol: HTTPS
45 sdcEndpoint: sdc-be:8443
priyanshuc00acbb2018-09-06 11:29:23 +053046 sdcExternalUser: workflow
IlanaPc80bff92019-11-18 21:10:08 +020047
48 serverSSLEnabled: true
49
priyanshubd7fbe22019-03-20 12:45:21 +053050 serverSSLKeyStoreType: jks
IlanaPc80bff92019-11-18 21:10:08 +020051 serverSSLKeyStorePath: /etc/keystore
52
53 serverSSLTrustStoreType: jks
54 serverSSLTrustStorePath: /etc/truststore
55
priyanshubd7fbe22019-03-20 12:45:21 +053056 cassandraSSLEnabled: false
IlanaPc80bff92019-11-18 21:10:08 +020057 cassandraTrustStorePath: /etc/truststore
priyanshua1b061392018-05-29 12:50:14 +053058
59# default number of instances
60replicaCount: 1
61
62nodeSelector: {}
63
64affinity: {}
65
66# probe configuration parameters
67liveness:
68 initialDelaySeconds: 60
69 periodSeconds: 10
70 # necessary to disable liveness probe when setting breakpoints
71 # in debugger so K8s doesn't restart unresponsive container
72 enabled: true
73
74readiness:
75 initialDelaySeconds: 60
76 periodSeconds: 10
77
78service:
79 type: NodePort
IlanaPc80bff92019-11-18 21:10:08 +020080 portName: sdc-wfd-be
priyanshua1b061392018-05-29 12:50:14 +053081 internalPort: 8080
82 externalPort: 8080
priyanshubd7fbe22019-03-20 12:45:21 +053083 internalPort2: 8443
84 externalPort2: 8443
IlanaPc80bff92019-11-18 21:10:08 +020085 nodePort: "57" # only one node port. set to http or https port depending on isHttpsEnabled property
86
priyanshua1b061392018-05-29 12:50:14 +053087
88ingress:
89 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010090 service:
91 - baseaddr: "sdcwfdbe"
92 name: "sdc-wfd-be"
93 port: 8443
94 config:
95 ssl: "redirect"
96
priyanshua1b061392018-05-29 12:50:14 +053097resources: {}
98 # We usually recommend not to specify default resources and to leave this as a conscious
99 # choice for the user. This also increases chances charts run on environments with little
100 # resources, such as Minikube. If you do want to specify resources, uncomment the following
101 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
102 #
103 # Example:
104 # Configure resource requests and limits
105 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
106 # Minimum memory for development is 2 CPU cores and 4GB memory
107 # Minimum memory for production is 4 CPU cores and 8GB memory
108#resources:
109# limits:
110# cpu: 2
111# memory: 4Gi
112# requests:
113# cpu: 2
114# memory: 4Gi