Merge "Revise dcae bootstrap version"
[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: 'cds-db-root-pass'
55     type: password
56     externalSecret: '{{ tpl (default "" .Values.config.cdsDB.dbRootPassExternalSecret) . }}'
57     password: '{{ .Values.config.cdsDB.dbRootPassword }}'
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.2
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: true
75   cdsDB:
76     dbServer: cds-db
77     dbPort: 3306
78     dbName: sdnctl
79     # dbUser: sdnctl
80     # dbPassword: sdnctl
81     # dbCredsExternalSecret: <some secret name>
82     # dbRootPassword: password
83     # dbRootPassExternalSecret
84
85 # default number of instances
86 replicaCount: 1
87
88 nodeSelector: {}
89
90 affinity: {}
91
92 # flag for kafka-listener dependency. Set to true if you are using message-router otherwise set to false if you are using
93 # custom kafka cluster.
94 dmaapEnabled: true
95
96
97 # probe configuration parameters
98 liveness:
99   initialDelaySeconds: 120
100   periodSeconds: 20
101   timeoutSeconds: 20
102   # necessary to disable liveness probe when setting breakpoints
103   # in debugger so K8s doesn't restart unresponsive container
104   enabled: true
105
106 readiness:
107   initialDelaySeconds: 120
108   periodSeconds: 10
109   timeoutSeconds: 20
110
111 service:
112   http:
113     type: ClusterIP
114     portName: blueprints-processor-http
115     internalPort: 8080
116     externalPort: 8080
117   grpc:
118     type: ClusterIP
119     portName: blueprints-processor-grpc
120     internalPort: 9111
121     externalPort: 9111
122   cluster:
123     type: ClusterIP
124     portName: blueprints-processor-cluster
125     internalPort: 5701
126     externalPort: 5701
127
128 persistence:
129   volumeReclaimPolicy: Retain
130   accessMode: ReadWriteMany
131   size: 2Gi
132   enabled: true
133   mountSubPath: cds/blueprints/deploy
134   deployedBlueprint: /opt/app/onap/blueprints/deploy
135
136 cluster:
137   # Cannot have cluster enabled if the replicaCount is not at least 3
138   # AND config value useScriptCompileCache is not set to false
139   enabled: false
140
141   clusterName: cds-cluster
142
143   # Defines the number of node to be part of the CP subsystem/raft algorithm. This value should be
144   # between 3 and 7 only.
145   groupSize: 3
146
147 ingress:
148   enabled: false
149   service:
150     - baseaddr: "blueprintsprocessorhttp"
151       name: "blueprints-processor-http"
152       port: 8080
153   config:
154     ssl: "none"
155
156 resources: {}
157   # We usually recommend not to specify default resources and to leave this as a conscious
158   # choice for the user. This also increases chances charts run on environments with little
159   # resources, such as Minikube. If you do want to specify resources, uncomment the following
160   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
161   #
162   # Example:
163   # Configure resource requests and limits
164   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
165   # Minimum memory for development is 2 CPU cores and 4GB memory
166   # Minimum memory for production is 4 CPU cores and 8GB memory
167 #resources:
168 #  limits:
169 #    cpu: 2
170 #    memory: 4Gi
171 #  requests:
172 #    cpu: 2
173 #    memory: 4Gi