blob: 92903ba96a49087ca5fe8e51def36518e1605e9b [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
r.bogacki08a72d62019-10-01 08:43:44 +020031image: onap/workflow-backend:1.5.2
32configInitImage: onap/workflow-init:1.5.2
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:
r.bogacki00bd0862019-09-03 09:22:43 +020042 javaOptions: "-Xmx1536m -Xms1536m"
priyanshubd7fbe22019-03-20 12:45:21 +053043 cassandraAuthenticationEnabled: true
priyanshu3af9db62018-08-16 16:23:52 +053044 cassandraThriftClientPort: 9160
45 cassandraClientPort: 9042
r.bogacki08a72d62019-10-01 08:43:44 +020046 sdcProtocol: HTTPS
47 sdcEndpoint: sdc-be:8443
priyanshuc00acbb2018-09-06 11:29:23 +053048 sdcExternalUser: workflow
49 sdcExternalUserPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
priyanshubd7fbe22019-03-20 12:45:21 +053050 serverSSLEnabled: false
51 serverSSLKeyStoreType: jks
r.bogacki08a72d62019-10-01 08:43:44 +020052 serverSSLKeyStorePath: etc/org.onap.sdc.p12
53 serverSSLKeyPassword: "!ppJ.JvWn0hGh)oVF]([Kv)^"
priyanshubd7fbe22019-03-20 12:45:21 +053054 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
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010088 service:
89 - baseaddr: "sdcwfdbe"
90 name: "sdc-wfd-be"
91 port: 8443
92 config:
93 ssl: "redirect"
94
priyanshua1b061392018-05-29 12:50:14 +053095resources: {}
96 # We usually recommend not to specify default resources and to leave this as a conscious
97 # choice for the user. This also increases chances charts run on environments with little
98 # resources, such as Minikube. If you do want to specify resources, uncomment the following
99 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
100 #
101 # Example:
102 # Configure resource requests and limits
103 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
104 # Minimum memory for development is 2 CPU cores and 4GB memory
105 # Minimum memory for production is 4 CPU cores and 8GB memory
106#resources:
107# limits:
108# cpu: 2
109# memory: 4Gi
110# requests:
111# cpu: 2
112# memory: 4Gi