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