Merge "Remove no longer needed "make" target"
[oom.git] / kubernetes / dcaegen2 / components / dcae-bootstrap / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved.
4 # Modifications Copyright © 2018 Amdocs, Bell Canada
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   nodePortPrefixExt: 304
25   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
26   consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.0.0
27
28 secrets:
29   - uid: pg-root-pass
30     name: &pgRootPassSecretName '{{ include "common.release" . }}-dcae-bootstrap-pg-root-pass'
31     type: password
32     externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgRootPasswordExternalSecret) .) (hasSuffix "dcae-bootstrap-pg-root-pass" .Values.postgres.config.pgRootPasswordExternalSecret) }}'
33     password: '{{ .Values.postgres.config.pgRootpassword }}'
34     policy: generate
35   - uid: 'cm-pass'
36     type: password
37     externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}'
38     password: '{{ .Values.config.cloudifyManagerPassword }}'
39
40 config:
41   logstashServiceName: log-ls
42   logstashPort: 5044
43   # Addresses of ONAP components
44   address:
45     consul:
46       host: consul-server
47       port: 8500
48     consul_ui: consul-server-ui
49     cm:
50       host: dcae-cloudify-manager
51       port: 443
52       proto: https
53     #Temporary assignment to avoid conflict
54     #To be removed after bootstrap changes done to remove dashboard
55     dashboard:
56       port: 30473
57       portSecure: 30474
58     datafile_collector:
59       port: 30223
60       portSecure: 30262
61     dmaap_dr_prov: dmaap-dr-prov
62     message_router: message-router
63     msb_discovery: msb-discovery
64     msb_iag: msb-iag
65     policy_pdp: pdp
66     sdc: sdc-be
67     snmptrap:
68       port: 30470
69     ves:
70       port: 30235
71       portSecure: 30417
72
73 # postgres values--overriding defaults in the postgres subchart
74 postgres:
75   nameOverride: dcae-db
76   service:
77     name: dcae-postgres
78     name2: dcae-pg-primary
79     name3: dcae-pg-replica
80   suffix: svc.cluster.local
81   container:
82     name:
83       primary: dcae-pg-primary
84       replica: dcae-pg-replica
85   config:
86     pgRootPasswordExternalSecret: *pgRootPassSecretName
87   persistence:
88     mountSubPath: dcae/data
89     mountInitPath: dcae
90
91 mongo:
92   nameOverride: dcae-mongo
93   config:
94     dbName: dcaecommondb
95   service:
96     name: dcae-mongohost
97     internalPort: 27017
98   nfsprovisionerPrefix: dcaemongo
99   sdnctlPrefix: tcagen2
100   persistence:
101     mountSubPath: dcae/mongo/data
102     enabled: true
103   disableNfsProvisioner: true
104
105 # application image
106 image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:2.2.1
107 default_k8s_location: central
108
109 # DCAE component images to be deployed via Cloudify Manager
110 # Use to override default setting in blueprints
111 componentImages:
112   holmes_rules: onap/holmes/rule-management:1.2.9
113   holmes_engine: onap/holmes/engine-management:1.2.9
114   tcagen2: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.2.1
115   ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.7.9
116   snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
117   prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.4
118   hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.5.1
119
120 # Resource Limit flavor -By Default using small
121 flavor: small
122 # Segregation for Different environment (Small and Large)
123 resources:
124   small:
125     limits:
126       cpu: 2
127       memory: 2Gi
128     requests:
129       cpu: 1
130       memory: 1Gi
131   large:
132     limits:
133       cpu: 4
134       memory: 4Gi
135     requests:
136       cpu: 2
137       memory: 2Gi
138   unlimited: {}
139 # Kubernetes namespace for components deployed via Cloudify manager
140 # If empty, use the common namespace
141 # dcae_ns: "onap"