blob: 6de75c96d791e6c875c3c14fef3fd2b76b65189b [file] [log] [blame]
BorislavG57f74d32018-04-12 11:08:39 +03001#============LICENSE_START========================================================
2#=================================================================================
Jack Lucasc6861312020-03-03 15:57:59 -05003# Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
Piotr Marcinkiewicza16144f2020-07-09 16:44:29 +02005# Modifications (c) 2020 Nokia. All rights reserved.
BorislavG57f74d32018-04-12 11:08:39 +03006# ================================================================================
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 "namespace" : "{{ if .Values.dcae_ns }}{{ .Values.dcae_ns}}{{ else }}{{include "common.namespace" . }}{{ end}}",
22 "consul_dns_name" : "{{ .Values.config.address.consul.host }}.{{ include "common.namespace" . }}",
Jack Lucas0108b522019-03-19 11:38:42 -040023 "default_k8s_location" : "{{ .Values.default_k8s_location }}",
BorislavG57f74d32018-04-12 11:08:39 +030024 "image_pull_secrets" : ["{{ include "common.namespace" . }}-docker-registry-key"],
25 "filebeat":
26 {
27 "log_path": "/var/log/onap",
28 "data_path": "/usr/share/filebeat/data",
29 "config_path": "/usr/share/filebeat/filebeat.yml",
30 "config_subpath": "filebeat.yml",
31 "image" : "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}",
Jack Lucasc70bc7e2019-09-23 09:02:31 -040032 "config_map" : "{{ include "common.release" . }}-dcae-filebeat-configmap"
Jack Lucas50fc0a32019-03-01 18:18:44 -050033 },
34 "tls":
35 {
Jack Lucasc70bc7e2019-09-23 09:02:31 -040036 "cert_path": "/opt/app/osaaf",
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000037 "image": "{{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }}",
Jack Lucasc6861312020-03-03 15:57:59 -050038 "component_cert_dir": "/opt/dcae/cacert",
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000039 "component_ca_cert_path": "/opt/dcae/cacert/cacert.pem",
40 "ca_cert_configmap": "{{ include "common.fullname" . }}-dcae-cacert"
Piotr Marcinkiewicza16144f2020-07-09 16:44:29 +020041 },
42 "external_cert":
43 {
44 "image_tag": "{{ .Values.global.tlsRepository }}/{{ .Values.cmpv2Config.global.aaf.certServiceClient.image }}",
45 "request_url": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.requestURL }}",
46 "timeout": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.requestTimeout }}",
47 "country": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.cmpv2Country }}",
48 "organization": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.cmpv2Organization }}",
49 "state": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.cmpv2State }}",
50 "organizational_unit": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.cmpv2OrganizationalUnit }}",
51 "location": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.cmpv2Location }}",
52 "keystore_password": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.keystorePassword }}",
53 "truststore_password": "{{ .Values.cmpv2Config.global.aaf.certServiceClient.envVariables.truststorePassword }}"
BorislavG57f74d32018-04-12 11:08:39 +030054 }
55}