BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | #================================================================================= |
| 3 | # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. |
Durgpal | 7ad4069 | 2018-08-03 07:28:36 +0000 | [diff] [blame^] | 4 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 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 |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 24 | readinessRepository: oomk8s |
Gary Wu | bf4b4d8 | 2018-05-11 13:26:30 -0700 | [diff] [blame] | 25 | readinessImage: readiness-check:2.0.0 |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 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 | message_router: message-router |
| 39 | msb_discovery: msb-discovery |
| 40 | policy_pdp: pdp |
| 41 | sdc: sdc-be |
Jack Lucas | d801f79 | 2018-04-27 22:20:33 +0000 | [diff] [blame] | 42 | # redisCaching is a string not a boolean! |
| 43 | redisCaching: "false" |
| 44 | |
| 45 | # postgres values--overriding defaults in the postgres subchart |
| 46 | postgres: |
| 47 | nameOverride: dcae-db |
| 48 | service: |
| 49 | name: dcae-postgres |
| 50 | name2: dcae-pg-primary |
| 51 | name3: dcae-pg-replica |
| 52 | container: |
| 53 | name: |
| 54 | primary: dcae-pg-primary |
| 55 | replica: dcae-pg-replica |
| 56 | config: |
| 57 | pgPrimaryPassword: onapdemodb |
| 58 | pgRootPassword: onapdemodb |
BorislavG | 9b65f83 | 2018-05-15 15:46:48 +0300 | [diff] [blame] | 59 | persistence: |
| 60 | mountSubPath: dcae/data |
| 61 | mountInitPath: dcae |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 62 | |
| 63 | # application image |
| 64 | repository: nexus3.onap.org:10001 |
Gary Wu | 4662166 | 2018-05-30 14:30:47 -0700 | [diff] [blame] | 65 | image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:1.1.11 |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 66 | |
| 67 | # DCAE component images to be deployed via Cloudify Manager |
| 68 | # Use to override default setting in blueprints |
| 69 | componentImages: |
| 70 | #TODO for further investigation: input template expansion issues if we comment this out |
Gary Wu | 4662166 | 2018-05-30 14:30:47 -0700 | [diff] [blame] | 71 | config_binding_service: onap/org.onap.dcaegen2.platform.configbinding:2.1.5 |
| 72 | deployment_handler: onap/org.onap.dcaegen2.platform.deployment-handler:2.1.5 |
| 73 | holmes_engine: onap/holmes/engine-management:1.1.0 |
| 74 | holmes_rules: onap/holmes/rule-management:1.1.0 |
| 75 | inventory: onap/org.onap.dcaegen2.platform.inventory-api:3.0.1 |
| 76 | policy_handler: onap/org.onap.dcaegen2.platform.policy-handler:2.4.5 |
| 77 | service_change_handler: onap/org.onap.dcaegen2.platform.servicechange-handler:1.1.4 |
| 78 | tca: onap/org.onap.dcaegen2.deployments.tca-cdap-container:1.1.0 |
| 79 | ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.2.0 |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 80 | |
| 81 | # Kubernetes namespace for components deployed via Cloudify manager |
| 82 | # If empty, use the common namespace |
Lusheng Ji | 98f947e | 2018-04-30 12:03:37 -0400 | [diff] [blame] | 83 | # dcae_ns: "onap" |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 84 | |