Merge "Bump testsuite image to 1.5.0-STAGING-latest" into staging
[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   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     dashboard:
46       port: 30418
47       portSecure: 30419
48     datafile_collector:
49       port: 30223
50       portSecure: 30262
51     dmaap_dr_prov: dmaap-dr-prov
52     message_router: message-router
53     msb_discovery: msb-discovery
54     msb_iag: msb-iag
55     policy_pdp: pdp
56     sdc: sdc-be
57     snmptrap:
58       port: 30470
59     ves:
60       port: 30235
61       portSecure: 30417
62   # redisCaching is a string not a boolean!
63   redisCaching: "false"
64
65 # postgres values--overriding defaults in the postgres subchart
66 postgres:
67   nameOverride: dcae-db
68   service:
69     name: dcae-postgres
70     name2: dcae-pg-primary
71     name3: dcae-pg-replica
72   suffix: svc.cluster.local
73   container:
74     name:
75       primary: dcae-pg-primary
76       replica: dcae-pg-replica
77   config:
78     pgPrimaryPassword: onapdemodb
79     pgRootPassword: onapdemodb
80   persistence:
81     mountSubPath: dcae/data
82     mountInitPath: dcae
83   pgpool:
84     nameOverride: dcae-pgpool
85     service:
86       name: dcae-pgpool
87     credentials:
88       pgpassword: onapdemodb
89     container:
90       name:
91         primary: dcae-pgpool-primary
92         replica: dcae-pgpool-replica
93
94 # application image
95 repository: nexus3.onap.org:10001
96 image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.6.0-STAGING-latest
97 default_k8s_location: central
98
99 # DCAE component images to be deployed via Cloudify Manager
100 # Use to override default setting in blueprints
101 componentImages:
102   dashboard: onap/org.onap.ccsdk.dashboard.ccsdk-app-os:1.1.0
103   holmes_rules: onap/holmes/rule-management:1.2.6
104   holmes_engine: onap/holmes/engine-management:1.2.5
105   tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.2
106   ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.4.5
107   snmptrap: onap/org.onap.dcaegen2.collectors.snmptrap:1.4.0
108   prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.2.4
109   hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.1.0
110
111 # Resource Limit flavor -By Default using small
112 flavor: small
113 # Segregation for Different environment (Small and Large)
114 resources:
115   small:
116     limits:
117       cpu: 2
118       memory: 2Gi
119     requests:
120       cpu: 1
121       memory: 1Gi
122   large:
123     limits:
124       cpu: 4
125       memory: 4Gi
126     requests:
127       cpu: 2
128       memory: 2Gi
129   unlimited: {}
130 # Kubernetes namespace for components deployed via Cloudify manager
131 # If empty, use the common namespace
132 # dcae_ns: "onap"