60a8d912f748434918ca58aa8ea0b3bdc86957a0
[oom.git] / kubernetes / dcaegen2 / components / dcae-bootstrap / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2018-2019 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   readinessRepository: oomk8s
26   readinessImage: readiness-check:2.0.0
27   loggingRepository: docker.elastic.co
28   loggingImage: beats/filebeat:5.5.0
29   tlsRepository: nexus3.onap.org:10001
30   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:1.0.3
31
32 config:
33   logstashServiceName: log-ls
34   logstashPort: 5044
35   # Addresses of ONAP components
36   address:
37     consul:
38       host: consul-server
39       port: 8500
40     consul_ui: consul-server-ui
41     cm:
42       host: dcae-cloudify-manager
43       port: 443
44       proto: https
45     #Temporary assignment to avoid conflict
46     #To be removed after bootstrap changes done to remove dashboard
47     dashboard:
48       port: 30473
49       portSecure: 30474
50     datafile_collector:
51       port: 30223
52       portSecure: 30262
53     dmaap_dr_prov: dmaap-dr-prov
54     message_router: message-router
55     msb_discovery: msb-discovery
56     msb_iag: msb-iag
57     policy_pdp: pdp
58     sdc: sdc-be
59     snmptrap:
60       port: 30470
61     ves:
62       port: 30235
63       portSecure: 30417
64   # redisCaching is a string not a boolean!
65   redisCaching: "false"
66
67 # postgres values--overriding defaults in the postgres subchart
68 postgres:
69   nameOverride: dcae-db
70   service:
71     name: dcae-postgres
72     name2: dcae-pg-primary
73     name3: dcae-pg-replica
74   suffix: svc.cluster.local
75   container:
76     name:
77       primary: dcae-pg-primary
78       replica: dcae-pg-replica
79   config:
80     pgPrimaryPassword: onapdemodb
81     pgRootPassword: onapdemodb
82   persistence:
83     mountSubPath: dcae/data
84     mountInitPath: dcae
85   pgpool:
86     nameOverride: dcae-pgpool
87     service:
88       name: dcae-pgpool
89     credentials:
90       pgpassword: onapdemodb
91     container:
92       name:
93         primary: dcae-pgpool-primary
94         replica: dcae-pgpool-replica
95
96 # application image
97 repository: nexus3.onap.org:10001
98 image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.6.4
99 default_k8s_location: central
100
101 # DCAE component images to be deployed via Cloudify Manager
102 # Use to override default setting in blueprints
103 componentImages:
104   holmes_rules: onap/holmes/rule-management:1.2.7
105   holmes_engine: onap/holmes/engine-management:1.2.6
106   tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.2
107   ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.5.2
108   snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
109   prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.0
110   hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.3.0
111
112 # Resource Limit flavor -By Default using small
113 flavor: small
114 # Segregation for Different environment (Small and Large)
115 resources:
116   small:
117     limits:
118       cpu: 2
119       memory: 2Gi
120     requests:
121       cpu: 1
122       memory: 1Gi
123   large:
124     limits:
125       cpu: 4
126       memory: 4Gi
127     requests:
128       cpu: 2
129       memory: 2Gi
130   unlimited: {}
131 # Kubernetes namespace for components deployed via Cloudify manager
132 # If empty, use the common namespace
133 # dcae_ns: "onap"