From a368937411e8767bc19f50a7968567fb68a6dfeb Mon Sep 17 00:00:00 2001 From: FrancescoFioraEst Date: Tue, 13 Sep 2022 15:54:10 +0100 Subject: Fix PodStatus Validator failing in K8sParticipant Fix PodStatus Validator failing in K8sParticipant using service template for Test and Verification of ACM State Management. Issue-ID: POLICY-4355 Change-Id: I63f8ed2c4991422dd43749151387ff54ba7d6071 Signed-off-by: FrancescoFioraEst --- .../acelement/resources/config/application.yaml | 2 + .../acelement/resources/config/logback.xml | 206 +++++++++++++++++++++ 2 files changed, 208 insertions(+) create mode 100644 examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/logback.xml (limited to 'examples/src') diff --git a/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/application.yaml b/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/application.yaml index 98d3b6461..d6aa5d951 100644 --- a/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/application.yaml +++ b/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/application.yaml @@ -6,6 +6,8 @@ spring: server: port: ${PORT} + ssl: + enabled: false error: path: /error diff --git a/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/logback.xml b/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/logback.xml new file mode 100644 index 000000000..d013c0909 --- /dev/null +++ b/examples/src/main/resources/clamp/acm/acelement-helm/acelement/resources/config/logback.xml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${logDir}/${errorLog}.log + + ${logDir}/${errorLog}.%d{yyyy-MM-dd}.%i.log.zip + + 50MB + 30 + 10GB + + + WARN + + + ${errorPattern} + + + + + + + + + ${logDir}/${debugLog}.log + + ${logDir}/${debugLog}.%d{yyyy-MM-dd}.%i.log.zip + + 50MB + 30 + 10GB + + + ${debugPattern} + + + + + + + + + ${logDir}/${networkLog}.log + + ${logDir}/${networkLog}.%d{yyyy-MM-dd}.%i.log.zip + + 50MB + 30 + 10GB + + + ${networkPattern} + + + + + + + + + ${logDir}/${metricLog}.log + + ${logDir}/${metricLog}.%d{yyyy-MM-dd}.%i.log.zip + + 50MB + 30 + 10GB + + + ${metricPattern} + + + + + + + + + ${logDir}/${transactionLog}.log + + ${logDir}/${transactionLog}.%d{yyyy-MM-dd}.%i.log.zip + + 50MB + 30 + 10GB + + + ${transactionPattern} + + + + + + + + + + [%d{yyyy-MM-dd'T'HH:mm:ss.SSS+00:00, UTC}|%level|%logger{0}|%thread] %msg%n + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit 1.2.3-korg