Skip to content

Commit

Permalink
Add DSE 6.8.49 to the build matrix (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
emerkle826 committed Jun 13, 2024
1 parent 607f055 commit cea9567
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37, 6.8.38, 6.8.39, 6.8.40, 6.8.41, 6.8.42, 6.8.43, 6.8.44, 6.8.46, 6.8.47, 6.8.48]
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37, 6.8.38, 6.8.39, 6.8.40, 6.8.41, 6.8.42, 6.8.43, 6.8.44, 6.8.46, 6.8.47, 6.8.48, 6.8.49]
image-base: [jdk8, jdk11]
include:
- dse-version: 6.8.48
- dse-version: 6.8.49
latest: true
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -108,10 +108,10 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37, 6.8.38, 6.8.39, 6.8.40, 6.8.41, 6.8.42, 6.8.43, 6.8.44, 6.8.46, 6.8.47, 6.8.48]
dse-version: [6.8.25, 6.8.26, 6.8.28, 6.8.29, 6.8.30, 6.8.31, 6.8.32, 6.8.33, 6.8.34, 6.8.35, 6.8.36, 6.8.37, 6.8.38, 6.8.39, 6.8.40, 6.8.41, 6.8.42, 6.8.43, 6.8.44, 6.8.46, 6.8.47, 6.8.48, 6.8.49]
image-base: [ubi8]
include:
- dse-version: 6.8.48
- dse-version: 6.8.49
latest: true
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
## unreleased

## v0.1.81 (2024-06-13)
* [FEATURE] [#497](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/497) Add DSE 6.8.49 to the build matrix
* [BUGFIX] [#502](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/502) Fix DSE 6.9 UBI image builds
* [BUGFIX] [#493](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/493) Fix nodetool in UBI based images

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ The following versions of Cassandra and DSE are published to Docker and supporte
| | | | 6.8.46 | |
| | | | 6.8.47 | |
| | | | 6.8.48 | |
| | | | 6.8.49 | |

- Apache Cassandra images are available in `linux/amd64` or `linux/arm64` formats. The DSE images are available only in the `linux/amd64` format.
- All images (with the exception of Cassandra trunk) are available as an Ubuntu based image or a RedHat UBI 8 based image.
Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse68.jdk11
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV DSE_HOME /opt/dse
ENV DSE_AGENT_HOME /opt/agent

# Get commandline parameters
ARG DSE_VERSION=6.8.48
ARG DSE_VERSION=6.8.49
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}
Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse68.jdk8
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV DSE_HOME /opt/dse
ENV DSE_AGENT_HOME /opt/agent

# Get commandline parameters
ARG DSE_VERSION=6.8.48
ARG DSE_VERSION=6.8.49
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}
Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse68.ubi8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DSE_VERSION=6.8.48
ARG DSE_VERSION=6.8.49
ARG UBI_MAJOR=8
ARG UBI_BASETAG=latest

Expand Down
2 changes: 1 addition & 1 deletion management-api-agent-dse-6.8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</repository>
</repositories>
<properties>
<dse.version>6.8.48</dse.version>
<dse.version>6.8.49</dse.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion management-api-agent-dse-6.9/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</repository>
</repositories>
<properties>
<dse.version>6.8.48</dse.version>
<dse.version>6.8.49</dse.version>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit cea9567

Please sign in to comment.