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