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