BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | #================================================================================= |
vv770d | d64369c | 2021-03-29 20:34:22 +0000 | [diff] [blame] | 3 | # Copyright (c) 2018-2021 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 |
Jack Lucas | d12a1b6 | 2021-01-11 12:46:33 -0500 | [diff] [blame] | 5 | # Copyright (c) 2021 J. F. Lucas. All rights reserved. |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | ################################################################# |
| 21 | # Global configuration defaults. |
| 22 | ################################################################# |
| 23 | global: |
| 24 | nodePortPrefix: 302 |
Vijay Venkatesh Kumar | 756171e | 2019-04-05 19:06:16 +0000 | [diff] [blame] | 25 | nodePortPrefixExt: 304 |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 26 | tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0 |
Jack Lucas | d263e69 | 2021-08-16 16:02:23 -0400 | [diff] [blame] | 27 | consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1 |
Krzysztof Opasiak | 9cb8203 | 2020-05-05 12:04:31 +0200 | [diff] [blame] | 28 | |
| 29 | secrets: |
| 30 | - uid: pg-root-pass |
| 31 | name: &pgRootPassSecretName '{{ include "common.release" . }}-dcae-bootstrap-pg-root-pass' |
| 32 | type: password |
| 33 | externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgRootPasswordExternalSecret) .) (hasSuffix "dcae-bootstrap-pg-root-pass" .Values.postgres.config.pgRootPasswordExternalSecret) }}' |
| 34 | password: '{{ .Values.postgres.config.pgRootpassword }}' |
| 35 | policy: generate |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 36 | - uid: 'cm-pass' |
| 37 | type: password |
| 38 | externalSecret: '{{ tpl (default "" .Values.config.cloudifyManagerPasswordExternalSecret) . }}' |
| 39 | password: '{{ .Values.config.cloudifyManagerPassword }}' |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 40 | |
| 41 | config: |
| 42 | logstashServiceName: log-ls |
| 43 | logstashPort: 5044 |
| 44 | # Addresses of ONAP components |
| 45 | address: |
| 46 | consul: |
| 47 | host: consul-server |
| 48 | port: 8500 |
Vijay Venkatesh Kumar | da5841f | 2019-04-23 22:14:18 +0000 | [diff] [blame] | 49 | consul_ui: consul-server-ui |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 50 | cm: |
| 51 | host: dcae-cloudify-manager |
| 52 | port: 443 |
| 53 | proto: https |
| 54 | #Temporary assignment to avoid conflict |
| 55 | #To be removed after bootstrap changes done to remove dashboard |
Vijay Venkatesh Kumar | 756171e | 2019-04-05 19:06:16 +0000 | [diff] [blame] | 56 | dashboard: |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 57 | port: 30473 |
| 58 | portSecure: 30474 |
dgermain | cb6fd18 | 2018-11-07 15:51:14 -0500 | [diff] [blame] | 59 | datafile_collector: |
| 60 | port: 30223 |
| 61 | portSecure: 30262 |
Conor Ward | dfc3de2 | 2018-09-18 18:14:23 +0000 | [diff] [blame] | 62 | dmaap_dr_prov: dmaap-dr-prov |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 63 | message_router: message-router |
| 64 | msb_discovery: msb-discovery |
Jack Lucas | a3db729 | 2018-10-15 17:46:23 -0400 | [diff] [blame] | 65 | msb_iag: msb-iag |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 66 | policy_pdp: pdp |
| 67 | sdc: sdc-be |
Vijay Venkatesh Kumar | 756171e | 2019-04-05 19:06:16 +0000 | [diff] [blame] | 68 | snmptrap: |
| 69 | port: 30470 |
dgermain | cb6fd18 | 2018-11-07 15:51:14 -0500 | [diff] [blame] | 70 | ves: |
| 71 | port: 30235 |
Vijay Venkatesh Kumar | 756171e | 2019-04-05 19:06:16 +0000 | [diff] [blame] | 72 | portSecure: 30417 |
Jack Lucas | d801f79 | 2018-04-27 22:20:33 +0000 | [diff] [blame] | 73 | |
| 74 | # postgres values--overriding defaults in the postgres subchart |
| 75 | postgres: |
| 76 | nameOverride: dcae-db |
| 77 | service: |
| 78 | name: dcae-postgres |
| 79 | name2: dcae-pg-primary |
| 80 | name3: dcae-pg-replica |
Vijay Venkatesh Kumar | 756171e | 2019-04-05 19:06:16 +0000 | [diff] [blame] | 81 | suffix: svc.cluster.local |
Jack Lucas | d801f79 | 2018-04-27 22:20:33 +0000 | [diff] [blame] | 82 | container: |
| 83 | name: |
| 84 | primary: dcae-pg-primary |
| 85 | replica: dcae-pg-replica |
| 86 | config: |
Krzysztof Opasiak | 9cb8203 | 2020-05-05 12:04:31 +0200 | [diff] [blame] | 87 | pgRootPasswordExternalSecret: *pgRootPassSecretName |
BorislavG | 9b65f83 | 2018-05-15 15:46:48 +0300 | [diff] [blame] | 88 | persistence: |
| 89 | mountSubPath: dcae/data |
| 90 | mountInitPath: dcae |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 91 | |
| 92 | # application image |
Vijay Venkatesh Kumar | 0f87688 | 2022-02-24 11:10:38 -0500 | [diff] [blame^] | 93 | image: onap/org.onap.dcaegen2.deployments.k8s-bootstrap-container:3.3.6 |
Jack Lucas | 0108b52 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 94 | default_k8s_location: central |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 95 | |
| 96 | # DCAE component images to be deployed via Cloudify Manager |
| 97 | # Use to override default setting in blueprints |
| 98 | componentImages: |
Remigiusz Janeczek | e661a7d | 2021-09-08 11:09:56 +0200 | [diff] [blame] | 99 | tcagen2: onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.3.1 |
Piotr Marcinkiewicz | 3a9b994 | 2021-08-31 08:56:43 +0200 | [diff] [blame] | 100 | ves: onap/org.onap.dcaegen2.collectors.ves.vescollector:1.10.1 |
Remigiusz Janeczek | 92231d4 | 2021-08-27 16:41:56 +0200 | [diff] [blame] | 101 | prh: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.7.1 |
Joanna Jeremicz | 616ea93 | 2021-09-06 14:25:04 +0200 | [diff] [blame] | 102 | hv_ves: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.9.1 |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 103 | |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 104 | # Resource Limit flavor -By Default using small |
| 105 | flavor: small |
| 106 | # Segregation for Different environment (Small and Large) |
| 107 | resources: |
| 108 | small: |
| 109 | limits: |
| 110 | cpu: 2 |
| 111 | memory: 2Gi |
| 112 | requests: |
| 113 | cpu: 1 |
| 114 | memory: 1Gi |
| 115 | large: |
| 116 | limits: |
| 117 | cpu: 4 |
| 118 | memory: 4Gi |
| 119 | requests: |
| 120 | cpu: 2 |
| 121 | memory: 2Gi |
| 122 | unlimited: {} |
BorislavG | 57f74d3 | 2018-04-12 11:08:39 +0300 | [diff] [blame] | 123 | # Kubernetes namespace for components deployed via Cloudify manager |
| 124 | # If empty, use the common namespace |
Lusheng Ji | 98f947e | 2018-04-30 12:03:37 -0400 | [diff] [blame] | 125 | # dcae_ns: "onap" |
farida azmy | 3748180 | 2021-04-11 15:41:32 +0200 | [diff] [blame] | 126 | |
| 127 | #Pods Service Account |
| 128 | serviceAccount: |
| 129 | nameOverride: dcae-bootstrap |
| 130 | roles: |
| 131 | - read |