From 8040c95590bca9d7a5e4ac48d72c1198ca66e107 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Tue, 31 May 2022 11:22:10 +0100 Subject: Fix HTTP handling in CLAMP ACM HTTPS is turned on using a Java property in the startup scripts in all the CLAMP ACM docker images. This means that HTTP cannot be enabled or HTTPS disabled in configuration. THis commit fixes that bug. The building of the CLAMP docker images calls each jar app.jar. If all images are being built locally together, the names collide and the last image's jar is used for all jars. This commit fixes that bug as well. Issue-ID: POLICY-4224 Change-Id: If4ba8cdef36f7a8a3665fe60eee31e42159e909b Signed-off-by: liamfallon --- .../policy-clamp-docker/src/main/docker/KubernetesParticipantDockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/policy-clamp-docker/src/main/docker/KubernetesParticipantDockerfile') diff --git a/packages/policy-clamp-docker/src/main/docker/KubernetesParticipantDockerfile b/packages/policy-clamp-docker/src/main/docker/KubernetesParticipantDockerfile index bed957c37..4d3303ec1 100644 --- a/packages/policy-clamp-docker/src/main/docker/KubernetesParticipantDockerfile +++ b/packages/policy-clamp-docker/src/main/docker/KubernetesParticipantDockerfile @@ -40,7 +40,7 @@ RUN tar xvfz /packages/kubernetes-participant.tar.gz --directory $POLICY_HOME && WORKDIR $POLICY_HOME COPY kubernetes-participant.sh bin/. -COPY /maven/app.jar /app +COPY /maven/policy-clamp-participant-impl-kubernetes.jar /app/app.jar RUN chown -R policy:policy * && \ chmod 755 bin/*.sh && \ -- cgit 1.2.3-korg