Skip to content

Commit be74b00

Browse files
committed
release 1.2.0
1 parent 075f85a commit be74b00

3 files changed

Lines changed: 50 additions & 6 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Release AET Karaf image
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
required: true
8+
description: 'Version to release'
9+
10+
jobs:
11+
release-karaf:
12+
runs-on: ubuntu-latest
13+
steps:
14+
-
15+
name: Checkout
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
-
20+
name: Set up QEMU
21+
uses: docker/setup-qemu-action@v2
22+
-
23+
name: Set up Docker Buildx
24+
uses: docker/setup-buildx-action@v2
25+
-
26+
name: Login to Docker Hub
27+
uses: docker/login-action@v2
28+
with:
29+
username: ${{ secrets.DOCKERHUB_USERNAME }}
30+
password: ${{ secrets.DOCKERHUB_TOKEN }}
31+
-
32+
name: Build and push Karaf image
33+
uses: docker/build-push-action@v4
34+
with:
35+
context: karaf
36+
push: true
37+
platforms: linux/amd64,linux/arm64
38+
tags: malaskowski/aet_karaf:${{ github.event.inputs.version }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Not released yet
22
Nothing new here
33

4+
# 1.2.0
5+
- `KARAF_SECRETS_ON_STARTUP` env triggers Karaf secrets scanning on startup
6+
- Images support for `linux/arm64` architecture.
7+
48
# 1.1.0
59
This release fixes security issue, upgrading Browsermob and Karaf dependencies to log4j 2.17.1 fixing CVE-2021-44832 and other Log4jShell vulnerabilies.
610
If you migrate from version older than `1.0.0`, please remember to execute all steps in _upgrade notes_ for all the version between this and your current version.

example-aet-swarm/aet-swarm.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,22 @@ services:
7777
- private
7878

7979
activemq:
80-
image: malaskowski/aet_activemq:1.1.0
80+
image: malaskowski/aet_activemq:1.2.0
8181
ports:
8282
- '8161:8161'
8383
networks:
8484
- private
8585

8686
browsermob:
87-
image: malaskowski/aet_browsermob:1.1.0
87+
image: malaskowski/aet_browsermob:1.2.0
8888
ports:
8989
- '8080:8080'
9090
- '8281-8681:8281-8681'
9191
networks:
9292
- private
9393

9494
karaf:
95-
image: malaskowski/aet_karaf:1.1.0
95+
image: malaskowski/aet_karaf:1.2.0
9696
healthcheck:
9797
test: curl --fail http://karaf:karaf@localhost:8181/health-check
9898
interval: 1m
@@ -106,8 +106,10 @@ services:
106106
- ./configs:/aet/custom/configs
107107
- ./bundles:/aet/custom/bundles
108108
- ./features:/aet/custom/features
109-
secrets:
110-
- KARAF_EXAMPLE_SECRET
109+
# environment:
110+
# - KARAF_SECRETS_ON_STARTUP=true
111+
# secrets:
112+
# - KARAF_EXAMPLE_SECRET
111113
ports:
112114
- '8181:8181'
113115
# - '5005:5005' # uncomment to be able to connect Karaf in debug mode
@@ -117,7 +119,7 @@ services:
117119
- private
118120

119121
report:
120-
image: malaskowski/aet_report:1.1.0
122+
image: malaskowski/aet_report:1.2.0
121123
ports:
122124
- '80:80'
123125
# volumes:

0 commit comments

Comments
 (0)