Add support for multiple k8s clusters
[oom.git] / kubernetes / dcaegen2 / charts / 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   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.0
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:1.0.1-STAGING-latest
30
31 config:
32   logstashServiceName: log-ls
33   logstashPort: 5044
34   # Addresses of ONAP components
35   address:
36     consul:
37       host: consul-server
38       port: 8500
39     cm: dcae-cloudify-manager
40     datafile_collector:
41       port: 30223
42       portSecure: 30262
43     dmaap_dr_prov: dmaap-dr-prov
44     message_router: message-router
45     msb_discovery: msb-discovery
46     msb_iag: msb-iag
47     policy_pdp: pdp
48     sdc: sdc-be
49     ves:
50       port: 30235
51   # redisCaching is a string not a boolean!
52   redisCaching: "false"
53
54 # postgres values--overriding defaults in the postgres subchart
55 postgres:
56   nameOverride: dcae-db
57   service:
58     name: dcae-postgres
59     name2: dcae-pg-primary
60     name3: dcae-pg-replica
61   container:
62     name:
63       primary: dcae-pg-primary
64       replica: dcae-pg-replica
65   config:
66     pgPrimaryPassword: onapdemodb
67     pgRootPassword: onapdemodb
68   persistence:
69     mountSubPath: dcae/data
70     mountInitPath: dcae
71   pgpool:
72     nameOverride: dcae-pgpool
73     service:
74       name: dcae-pgpool
75     credentials:
76       pgpassword: onapdemodb
77     container:
78       name:
79         primary: dcae-pgpool-primary
80         replica: dcae-pgpool-replica
81
82 # application image
83 repository: nexus3.onap.org:10001
84 image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.4.10-STAGING-latest
85 default_k8s_location: central
86
87 # DCAE component images to be deployed via Cloudify Manager
88 # Use to override default setting in blueprints
89 componentImages:
90   datafile_collector: onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server:1.1.1
91   holmes_rules: onap/holmes/rule-management:1.2.3
92   holmes_engine: onap/holmes/engine-management:1.2.2
93   tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.0
94   ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.3.1
95   snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
96   prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.2.1-SNAPSHOT
97   hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.1.0-SNAPSHOT
98
99 # Resource Limit flavor -By Default using small
100 flavor: small
101 # Segregation for Different environment (Small and Large)
102 resources:
103   small:
104     limits:
105       cpu: 2
106       memory: 2Gi
107     requests:
108       cpu: 1
109       memory: 1Gi
110   large:
111     limits:
112       cpu: 4
113       memory: 4Gi
114     requests:
115       cpu: 2
116       memory: 2Gi
117   unlimited: {}
118 # Kubernetes namespace for components deployed via Cloudify manager
119 # If empty, use the common namespace
120 # dcae_ns: "onap"