File tree 7 files changed +31
-5
lines changed
7 files changed +31
-5
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ WORKDIR /tmp
30
30
31
31
RUN set -eux; \
32
32
microdnf -y install gzip tar openssl jq; \
33
+ microdnf -y update; \
33
34
microdnf clean all
34
35
35
36
ENV LANG="en_US.UTF-8" \
@@ -57,6 +58,14 @@ RUN set -eux; \
57
58
# Finally, copy the exporter sidecar and create the docker image
58
59
FROM linux as base
59
60
61
+ LABEL "org.opencontainers.image.authors" ="Ryan Eberhard <ryan.eberhard@oracle.com>, Russell Gold <russell.gold@oracle.com>" \
62
+ "org.opencontainers.image.url" ="https://github.com/oracle/weblogic-monitoring-exporter" \
63
+ "org.opencontainers.image.source" ="https://github.com/oracle/weblogic-monitoring-exporter" \
64
+ "org.opencontainers.image.vendor" ="Oracle Corporation" \
65
+ "org.opencontainers.image.title" ="Oracle WebLogic Monitoring Exporter" \
66
+ "org.opencontainers.image.description" ="Oracle WebLogic Monitoring Exporter" \
67
+ "org.opencontainers.image.documentation" ="https://github.com/oracle/weblogic-monitoring-exporter"
68
+
60
69
COPY --from=build project/wls-exporter-sidecar/target/wls-exporter-sidecar.jar ./
61
70
COPY --from=build project/wls-exporter-sidecar/target/libs ./libs
62
71
COPY start_exporter.sh .
Original file line number Diff line number Diff line change 9
9
<parent >
10
10
<artifactId >wls-exporter-parent</artifactId >
11
11
<groupId >com.oracle.wls.exporter</groupId >
12
- <version >2.0.2 </version >
12
+ <version >2.0.3 </version >
13
13
</parent >
14
14
15
15
<artifactId >build-helper-mojo</artifactId >
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # Copyright (c) 2021, Oracle and/or its affiliates.
3
+ # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4
+
5
+ curl -L -O https://github.com/oracle/weblogic-monitoring-exporter/releases/latest/download/wls-exporter.war
6
+
7
+ if [ ! -z " $1 " ]; then
8
+ tmp_dir=$( mktemp -d -t ci-XXXXXXXXXX)
9
+ echo " created $tmp_dir "
10
+ cp $1 $tmp_dir /config.yml
11
+ warDir=$PWD
12
+ pushd $tmp_dir
13
+ echo " in temp dir"
14
+ zip $warDir /wls-exporter.war config.yml
15
+ popd
16
+ # rm -rf $tmp_dir
17
+ fi
Original file line number Diff line number Diff line change 7
7
8
8
<groupId >com.oracle.wls.exporter</groupId >
9
9
<artifactId >wls-exporter-parent</artifactId >
10
- <version >2.0.2 </version >
10
+ <version >2.0.3 </version >
11
11
<modules >
12
12
<module >wls-exporter-core</module >
13
13
</modules >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >wls-exporter-parent</artifactId >
10
10
<groupId >com.oracle.wls.exporter</groupId >
11
- <version >2.0.2 </version >
11
+ <version >2.0.3 </version >
12
12
</parent >
13
13
14
14
<artifactId >wls-exporter-core</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >com.oracle.wls.exporter</groupId >
10
10
<artifactId >wls-exporter-parent</artifactId >
11
- <version >2.0.2 </version >
11
+ <version >2.0.3 </version >
12
12
</parent >
13
13
<artifactId >wls-exporter-sidecar</artifactId >
14
14
<name >WebLogic Monitoring Exporter Sidecar</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >wls-exporter-parent</artifactId >
9
9
<groupId >com.oracle.wls.exporter</groupId >
10
- <version >2.0.2 </version >
10
+ <version >2.0.3 </version >
11
11
</parent >
12
12
<modelVersion >4.0.0</modelVersion >
13
13
You can’t perform that action at this time.
0 commit comments