blob: 629b8252cc3e06317212adca5eebe2af11a794dc [file] [log] [blame]
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05001# Copyright (c) 2019 IBM, Bell Canada
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +01002# Copyright (c) 2020 Samsung Electronics
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05003#
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05004# 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 # Change to an unused port prefix range to prevent port conflicts
21 # with other instances running within the same k8s cluster
Oleg Mitsura0197bf12019-05-03 15:03:55 -040022 nodePortPrefixExt: 304
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050023
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050024 # image pull policy
25 pullPolicy: Always
26
27 persistence:
28 mountPath: /dockerdata-nfs
29
Konrad Bańkae332b242020-04-06 13:30:06 +020030 #This configuration specifies Service and port for SDNC OAM interface
31 sdncOamService: sdnc-oam
32 sdncOamPort: 8282
33
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010034#################################################################
35# Secrets metaconfig
36#################################################################
37secrets:
38 - uid: 'cds-db-user-creds'
39 type: basicAuth
40 externalSecret: '{{ tpl (default "" .Values.config.cdsDB.dbCredsExternalSecret) . }}'
41 login: '{{ .Values.config.cdsDB.dbUser }}'
42 password: '{{ .Values.config.cdsDB.dbPassword }}'
43 passwordPolicy: required
Konrad Bańka031bdb72020-05-14 16:56:39 +020044 - uid: 'sdnc-db-root-pass'
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010045 type: password
Konrad Bańka031bdb72020-05-14 16:56:39 +020046 externalSecret: '{{ tpl (default "" .Values.config.sdncDB.dbRootPassExternalSecret) . }}'
47 password: '{{ .Values.config.sdncDB.dbRootPass }}'
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010048 passwordPolicy: required
49
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050050#################################################################
51# Application configuration defaults.
52#################################################################
53# application image
Dan Timoneyc100dc52020-11-19 08:08:42 -050054image: onap/ccsdk-blueprintsprocessor:1.0.3
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050055pullPolicy: Always
56
57# flag to enable debugging - application support required
58debugEnabled: false
59
60# application configuration
61config:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050062 appConfigDir: /opt/app/onap/config
abdelseaudica7459b2020-07-03 17:31:06 +000063 useScriptCompileCache: false
Konrad Bańka031bdb72020-05-14 16:56:39 +020064 sdncDB:
65 dbService: mariadb-galera
66 dbPort: 3306
67 dbName: sdnctl
68 #dbRootPass: Custom root password
69 dbRootPassExternalSecret: '{{ include "common.mariadb.secret.rootPassSecretName" ( dict "dot" . "chartName" .Values.config.sdncDB.dbService ) }}'
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010070 cdsDB:
71 dbServer: cds-db
72 dbPort: 3306
73 dbName: sdnctl
Sylvain Desbureaux503b2292020-11-21 22:29:17 +010074 dbUser: sdnctl
75 dbPassword: sdnctl
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010076 # dbCredsExternalSecret: <some secret name>
77 # dbRootPassword: password
78 # dbRootPassExternalSecret
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050079
80# default number of instances
abdelseaudica7459b2020-07-03 17:31:06 +000081replicaCount: 3
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050082
83nodeSelector: {}
84
85affinity: {}
86
Prathamesh Morde93da1272019-06-24 10:36:15 -040087# flag for kafka-listener dependency. Set to true if you are using message-router otherwise set to false if you are using
88# custom kafka cluster.
89dmaapEnabled: true
90
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010091
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050092# probe configuration parameters
93liveness:
Yang Xu435062b2019-06-17 01:19:37 -040094 initialDelaySeconds: 120
Oleg Mitsura3a621182019-10-09 12:40:11 -040095 periodSeconds: 20
96 timeoutSeconds: 20
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050097 # necessary to disable liveness probe when setting breakpoints
98 # in debugger so K8s doesn't restart unresponsive container
99 enabled: true
100
101readiness:
Yang Xu435062b2019-06-17 01:19:37 -0400102 initialDelaySeconds: 120
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500103 periodSeconds: 10
Oleg Mitsura3a621182019-10-09 12:40:11 -0400104 timeoutSeconds: 20
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500105
106service:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500107 http:
gummarc7bd0e22020-03-05 18:57:12 +0000108 type: ClusterIP
Alexis de Talhouët63df1632019-03-20 08:17:58 -0400109 portName: blueprints-processor-http
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500110 internalPort: 8080
111 externalPort: 8080
112 grpc:
Oleg Mitsura0197bf12019-05-03 15:03:55 -0400113 type: ClusterIP
Alexis de Talhouët63df1632019-03-20 08:17:58 -0400114 portName: blueprints-processor-grpc
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500115 internalPort: 9111
116 externalPort: 9111
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -0500117 cluster:
118 type: ClusterIP
119 portName: blueprints-processor-cluster
120 internalPort: 5701
121 externalPort: 5701
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500122
123persistence:
Alexis de Talhouët108e28f2019-04-14 18:54:56 -0400124 volumeReclaimPolicy: Retain
125 accessMode: ReadWriteMany
126 size: 2Gi
127 enabled: true
128 mountSubPath: cds/blueprints/deploy
129 deployedBlueprint: /opt/app/onap/blueprints/deploy
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500130
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -0500131cluster:
132 # Cannot have cluster enabled if the replicaCount is not at least 3
133 # AND config value useScriptCompileCache is not set to false
abdelseaudica7459b2020-07-03 17:31:06 +0000134 enabled: true
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -0500135
136 clusterName: cds-cluster
137
138 # Defines the number of node to be part of the CP subsystem/raft algorithm. This value should be
139 # between 3 and 7 only.
140 groupSize: 3
141
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500142ingress:
143 enabled: false
Lucjan Bryndza33315d42019-11-27 14:07:58 +0100144 service:
145 - baseaddr: "blueprintsprocessorhttp"
Lucjan Bryndza6174db42020-07-09 09:00:20 +0000146 name: "cds-blueprints-processor-http"
Lucjan Bryndza33315d42019-11-27 14:07:58 +0100147 port: 8080
148 config:
149 ssl: "none"
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500150
Dominik Mizyndd285d32020-08-21 13:10:11 +0200151logback:
152 rootLogLevel: INFO
153 logger:
154 springframework: INFO
155 springframeworkWeb: INFO
156 springframeworkSecurityWebauthentication: INFO
157 hibernate: INFO
158 onapCcsdkCds: INFO
159
Dan Timoney6cc07e02020-09-23 08:52:47 -0400160flavor: small
161
162resources:
163 small:
164 limits:
165 cpu: 2
166 memory: 4Gi
167 requests:
168 cpu: 1
169 memory: 1Gi
170 large:
171 limits:
172 cpu: 4
173 memory: 8Gi
174 requests:
175 cpu: 2
176 memory: 4Gi
177 unlimited: {}