[GENERAL] Use readiness container v3.0.1
[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   readinessImage: onap/oom/readiness:3.0.1
26   loggingRepository: docker.elastic.co
27   loggingImage: beats/filebeat:5.5.0
28   tlsRepository: nexus3.onap.org:10001
29   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
30   envsubstImage: dibi/envsubst
31
32 secrets:
33   - uid: pg-root-pass
34     name: &pgRootPassSecretName '{{ include "common.release" . }}-dcae-bootstrap-pg-root-pass'
35     type: password
36     externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgRootPasswordExternalSecret) .) (hasSuffix "dcae-bootstrap-pg-root-pass" .Values.postgres.config.pgRootPasswordExternalSecret) }}'
37     password: '{{ .Values.postgres.config.pgRootpassword }}'
38     policy: generate
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 repository: nexus3.onap.org:10001
107 image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:2.0.4
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.7
114   holmes_engine: onap/holmes/engine-management:1.2.6
115   tcagen2: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.2.0
116   ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.7.3
117   snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
118   prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.2
119   hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.4.0
120
121 # Resource Limit flavor -By Default using small
122 flavor: small
123 # Segregation for Different environment (Small and Large)
124 resources:
125   small:
126     limits:
127       cpu: 2
128       memory: 2Gi
129     requests:
130       cpu: 1
131       memory: 1Gi
132   large:
133     limits:
134       cpu: 4
135       memory: 4Gi
136     requests:
137       cpu: 2
138       memory: 2Gi
139   unlimited: {}
140 # Kubernetes namespace for components deployed via Cloudify manager
141 # If empty, use the common namespace
142 # dcae_ns: "onap"