blob: 05793d4f5bf24f2b7eebf34996a36128aa11a91b [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
vasrazee9aaf22020-03-03 13:59:45 +000031image: onap/sdc-workflow-backend:1.7.0
32configInitImage: onap/sdc-workflow-init:1.7.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 cassandraClientPort: 9042
IlanaPc80bff92019-11-18 21:10:08 +020042
r.bogacki08a72d62019-10-01 08:43:44 +020043 sdcProtocol: HTTPS
44 sdcEndpoint: sdc-be:8443
priyanshuc00acbb2018-09-06 11:29:23 +053045 sdcExternalUser: workflow
IlanaPc80bff92019-11-18 21:10:08 +020046
47 serverSSLEnabled: true
48
priyanshubd7fbe22019-03-20 12:45:21 +053049 serverSSLKeyStoreType: jks
MichaelMorrisb137f7e2020-03-15 17:44:48 +000050 serverSSLKeyStorePath: /home/sdc/etc/keystore
IlanaPc80bff92019-11-18 21:10:08 +020051
52 serverSSLTrustStoreType: jks
MichaelMorrisb137f7e2020-03-15 17:44:48 +000053 serverSSLTrustStorePath: /home/sdc/etc/truststore
IlanaPc80bff92019-11-18 21:10:08 +020054
priyanshubd7fbe22019-03-20 12:45:21 +053055 cassandraSSLEnabled: false
MichaelMorrisb137f7e2020-03-15 17:44:48 +000056 cassandraTrustStorePath: /home/sdc/etc/truststore
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
IlanaPc80bff92019-11-18 21:10:08 +020079 portName: sdc-wfd-be
priyanshua1b061392018-05-29 12:50:14 +053080 internalPort: 8080
81 externalPort: 8080
priyanshubd7fbe22019-03-20 12:45:21 +053082 internalPort2: 8443
83 externalPort2: 8443
IlanaPc80bff92019-11-18 21:10:08 +020084 nodePort: "57" # only one node port. set to http or https port depending on isHttpsEnabled property
85
priyanshua1b061392018-05-29 12:50:14 +053086
87ingress:
88 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010089 service:
90 - baseaddr: "sdcwfdbe"
91 name: "sdc-wfd-be"
92 port: 8443
93 config:
94 ssl: "redirect"
95
priyanshua1b061392018-05-29 12:50:14 +053096resources: {}
97 # We usually recommend not to specify default resources and to leave this as a conscious
98 # choice for the user. This also increases chances charts run on environments with little
99 # resources, such as Minikube. If you do want to specify resources, uncomment the following
100 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
101 #
102 # Example:
103 # Configure resource requests and limits
104 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
105 # Minimum memory for development is 2 CPU cores and 4GB memory
106 # Minimum memory for production is 4 CPU cores and 8GB memory
107#resources:
108# limits:
109# cpu: 2
110# memory: 4Gi
111# requests:
112# cpu: 2
113# memory: 4Gi