2de835492f75a6b9bbea3b809804fbd8de15757c
[oom.git] / kubernetes / cds / charts / cds-blueprints-processor / values.yaml
1 # Copyright (c) 2019 IBM, Bell Canada
2 # Copyright (c) 2020 Samsung Electronics
3 #
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 #################################################################
19 global:
20   # Change to an unused port prefix range to prevent port conflicts
21   # with other instances running within the same k8s cluster
22   nodePortPrefixExt: 304
23
24   # image repositories
25   repository: nexus3.onap.org:10001
26
27   # readiness check
28   readinessRepository: oomk8s
29   readinessImage: readiness-check:2.0.0
30
31   # image pull policy
32   pullPolicy: Always
33
34   persistence:
35     mountPath: /dockerdata-nfs
36
37   # envsusbt
38   envsubstImage: dibi/envsubst
39
40   #This configuration specifies Service and port for SDNC OAM interface
41   sdncOamService: sdnc-oam
42   sdncOamPort: 8282
43
44 #################################################################
45 # Secrets metaconfig
46 #################################################################
47 secrets:
48   - uid: 'cds-db-user-creds'
49     type: basicAuth
50     externalSecret: '{{ tpl (default "" .Values.config.cdsDB.dbCredsExternalSecret) . }}'
51     login: '{{ .Values.config.cdsDB.dbUser }}'
52     password: '{{ .Values.config.cdsDB.dbPassword }}'
53     passwordPolicy: required
54   - uid: 'sdnc-db-root-pass'
55     type: password
56     externalSecret: '{{ tpl (default "" .Values.config.sdncDB.dbRootPassExternalSecret) . }}'
57     password: '{{ .Values.config.sdncDB.dbRootPass }}'
58     passwordPolicy: required
59
60 #################################################################
61 # Application configuration defaults.
62 #################################################################
63 # application image
64 repository: nexus3.onap.org:10001
65 image: onap/ccsdk-blueprintsprocessor:0.7.5
66 pullPolicy: Always
67
68 # flag to enable debugging - application support required
69 debugEnabled: false
70
71 # application configuration
72 config:
73   appConfigDir: /opt/app/onap/config
74   useScriptCompileCache: false
75   sdncDB:
76     dbService: mariadb-galera
77     dbPort: 3306
78     dbName: sdnctl
79     #dbRootPass: Custom root password
80     dbRootPassExternalSecret: '{{ include "common.mariadb.secret.rootPassSecretName" ( dict "dot" . "chartName" .Values.config.sdncDB.dbService ) }}'
81   cdsDB:
82     dbServer: cds-db
83     dbPort: 3306
84     dbName: sdnctl
85     # dbUser: sdnctl
86     # dbPassword: sdnctl
87     # dbCredsExternalSecret: <some secret name>
88     # dbRootPassword: password
89     # dbRootPassExternalSecret
90
91 # default number of instances
92 replicaCount: 3
93
94 nodeSelector: {}
95
96 affinity: {}
97
98 # flag for kafka-listener dependency. Set to true if you are using message-router otherwise set to false if you are using
99 # custom kafka cluster.
100 dmaapEnabled: true
101
102
103 # probe configuration parameters
104 liveness:
105   initialDelaySeconds: 120
106   periodSeconds: 20
107   timeoutSeconds: 20
108   # necessary to disable liveness probe when setting breakpoints
109   # in debugger so K8s doesn't restart unresponsive container
110   enabled: true
111
112 readiness:
113   initialDelaySeconds: 120
114   periodSeconds: 10
115   timeoutSeconds: 20
116
117 service:
118   http:
119     type: ClusterIP
120     portName: blueprints-processor-http
121     internalPort: 8080
122     externalPort: 8080
123   grpc:
124     type: ClusterIP
125     portName: blueprints-processor-grpc
126     internalPort: 9111
127     externalPort: 9111
128   cluster:
129     type: ClusterIP
130     portName: blueprints-processor-cluster
131     internalPort: 5701
132     externalPort: 5701
133
134 persistence:
135   volumeReclaimPolicy: Retain
136   accessMode: ReadWriteMany
137   size: 2Gi
138   enabled: true
139   mountSubPath: cds/blueprints/deploy
140   deployedBlueprint: /opt/app/onap/blueprints/deploy
141
142 cluster:
143   # Cannot have cluster enabled if the replicaCount is not at least 3
144   # AND config value useScriptCompileCache is not set to false
145   enabled: true
146
147   clusterName: cds-cluster
148
149   # Defines the number of node to be part of the CP subsystem/raft algorithm. This value should be
150   # between 3 and 7 only.
151   groupSize: 3
152
153 ingress:
154   enabled: false
155   service:
156     - baseaddr: "blueprintsprocessorhttp"
157       name: "cds-blueprints-processor-http"
158       port: 8080
159   config:
160     ssl: "none"
161
162 resources: {}
163   # We usually recommend not to specify default resources and to leave this as a conscious
164   # choice for the user. This also increases chances charts run on environments with little
165   # resources, such as Minikube. If you do want to specify resources, uncomment the following
166   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
167   #
168   # Example:
169   # Configure resource requests and limits
170   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
171   # Minimum memory for development is 2 CPU cores and 4GB memory
172   # Minimum memory for production is 4 CPU cores and 8GB memory
173 #resources:
174 #  limits:
175 #    cpu: 2
176 #    memory: 4Gi
177 #  requests:
178 #    cpu: 2
179 #    memory: 4Gi