From 030ba1a000fc78e4c8778be469a41b14538a58ea Mon Sep 17 00:00:00 2001 From: liamfallon Date: Mon, 7 Jun 2021 16:41:12 +0100 Subject: Initial commit for kubernetes participant in CLAMP Spring application that exposes REST end points for installing, uninstalling, onboarding and deleting of helm charts to/from local directory. CL runtime can also trigger installation and uninstallation of helm charts from both local and configured helm repositories. Junits will be committed as a separate review. Issue-ID: POLICY-3240 Change-Id: I7633b6fd6ad41fc8fa55d3722e44f1b2ec132e50 Signed-off-by: zrrmmua Signed-off-by: liamfallon --- .../src/main/resources/config/application.yaml | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml (limited to 'participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml') diff --git a/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml b/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml new file mode 100644 index 000000000..b4240036b --- /dev/null +++ b/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml @@ -0,0 +1,25 @@ +spring: + profiles: + active: prod + +participant: + file: src/main/resources/config/KubernetesParticipantConfig.json +management: + endpoints: + web: + exposure: + include: "loggers,logfile,health,info,metrics,threaddump,heapdump" +server: + # Configuration of the HTTP/REST server. The parameters are defined and handled by the springboot framework. + # See springboot documentation. + http-port : 8083 + +logging: + # Configuration of logging + level: + ROOT: INFO + org.springframework: ERROR + org.springframework.data: ERROR + org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR + file: + name: /var/log/helm-manager/application.log -- cgit 1.2.3-korg