aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/multicloud/components/multicloud-starlingx/resources/config/log')
-rw-r--r--kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/config.json78
-rw-r--r--kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/log.yml52
2 files changed, 0 insertions, 130 deletions
diff --git a/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/config.json b/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/config.json
deleted file mode 100644
index ebc53849d6..0000000000
--- a/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/config.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "name":"SDCDistributionGroup",
- "restServerParameters":{
- "host":"0.0.0.0",
- "port":9014,
- "userName":"healthcheck",
- "password":"zb!XztG34",
- "https":{{ (eq "true" (include "common.needTLS" .)) | ternary true false }}
- },
- "receptionHandlerParameters":{
- "SDCReceptionHandler":{
- "receptionHandlerType":"SDC",
- "receptionHandlerClassName":"org.onap.policy.distribution.reception.handling.sdc.SdcReceptionHandler",
- "receptionHandlerConfigurationName":"sdcConfiguration",
- "pluginHandlerParameters":{
- "artifactForwarders":{
- "DummyForwarder":{
- "forwarderType":"DummyForwarder",
- "forwarderClassName":"org.onap.policy.distribution.main.testclasses.DummyArtifactForwarder",
- "forwarderConfigurationParameters": "dummyConfiguration"
- }
- }
- }
- }
- },
- "receptionHandlerConfigurationParameters":{
- "sdcConfiguration":{
- "parameterClassName":"org.onap.policy.distribution.reception.handling.sdc.SdcReceptionHandlerConfigurationParameterGroup",
- "parameters":{
- "asdcAddress": "sdc-be.{{ include "common.namespace" . }}:{{ (eq "true" (include "common.needTLS" .)) | ternary 8443 8080 }}",
- "messageBusAddress": [
- "message-router.{{ include "common.namespace" . }}"
- ],
- "user": "multicloud",
- "password": "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U",
- "pollingInterval":20,
- "pollingTimeout":30,
- "consumerId": "multicloud-starlingx-id",
- "artifactTypes": [
- "TOSCA_CSAR",
- "HEAT",
- "HEAT_ARTIFACT",
- "HEAT_ENV",
- "HEAT_NESTED",
- "HEAT_VOL",
- "OTHER",
- "VF_MODULES_METADATA",
- "CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT"
- ],
- "consumerGroup": "multicloud-starlingx-group",
- "environmentName": "AUTO",
- "keystorePath": "null",
- "keystorePassword": "null",
- "activeserverTlsAuth": false,
- "isFilterinEmptyResources": true,
- "isUseHttpsWithDmaap": false,
- "isUseHttpsWithSDC": {{ (eq "true" (include "common.needTLS" .)) | ternary true false }},
- "httpsproxyHost": "null",
- "httpproxyHost": "null",
- "httpsproxyPort": 8181,
- "httpproxyPort": 8080
- }
- }
- },
- "artifactForwarderConfigurationParameters":{
- "dummyConfiguration":{
- "parameterClassName":"org.onap.policy.distribution.main.testclasses.DummyArtifactForwarderParameterGroup",
- "parameters":{
- "useHttps": false,
- "hostname": "null",
- "port": 8081,
- "userName": "null",
- "password": "null",
- "isManaged": true
- }
- }
- }
-}
diff --git a/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/log.yml b/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/log.yml
deleted file mode 100644
index 243e51e665..0000000000
--- a/kubernetes/multicloud/components/multicloud-starlingx/resources/config/log/log.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-{{/*
-# Copyright (c) 2019 Intel Corporation.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-*/}}
-version: 1
-disable_existing_loggers: False
-
-loggers:
- starlingx_base:
- handlers: [console_handler, file_handler]
- level: "DEBUG"
- propagate: False
- starlingx:
- handlers: [console_handler, file_handler]
- level: "DEBUG"
- propagate: False
- newton_base:
- handlers: [console_handler, file_handler]
- level: "DEBUG"
- propagate: False
- common:
- handlers: [console_handler, file_handler]
- level: "DEBUG"
- propagate: False
-
-handlers:
- console_handler:
- level: "DEBUG"
- class: "logging.StreamHandler"
- formatter: "standard"
- file_handler:
- level: "DEBUG"
- class: "logging.handlers.RotatingFileHandler"
- filename: "/var/log/onap/multicloud/openstack/starlingx/starlingx.log"
- formatter: "standard"
- maxBytes: 52428800
- backupCount: 10
-
-formatters:
- standard:
- format: "%(asctime)s|||||%(name)s||%(thread)||%(funcName)s||%(levelname)s||%(message)s"