Skip to content

Commit

Permalink
Add DSE 6.8.48, Cassandra 4.1.5 and Cassandra 4.0.13 to the build mat…
Browse files Browse the repository at this point in the history
…rix (#490)
  • Loading branch information
emerkle826 authored May 31, 2024
1 parent 3706fbb commit 539b251
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 20 deletions.
16 changes: 8 additions & 8 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]
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]
image-base: [jdk8, jdk11]
include:
- dse-version: 6.8.47
- dse-version: 6.8.48
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]
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]
image-base: [ubi8]
include:
- dse-version: 6.8.47
- dse-version: 6.8.48
latest: true
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -248,9 +248,9 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
cassandra-version: [4.0.0, 4.0.1, 4.0.3, 4.0.4, 4.0.5, 4.0.6, 4.0.7, 4.0.8, 4.0.9, 4.0.10, 4.0.11, 4.0.12]
cassandra-version: [4.0.0, 4.0.1, 4.0.3, 4.0.4, 4.0.5, 4.0.6, 4.0.7, 4.0.8, 4.0.9, 4.0.10, 4.0.11, 4.0.12, 4.0.13]
include:
- cassandra-version: 4.0.11
- cassandra-version: 4.0.13
latest: true
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -319,9 +319,9 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
cassandra-version: [4.1.0, 4.1.1, 4.1.2, 4.1.3, 4.1.4]
cassandra-version: [4.1.0, 4.1.1, 4.1.2, 4.1.3, 4.1.4, 4.1.5]
include:
- cassandra-version: 4.1.4
- cassandra-version: 4.1.5
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 @@ -10,6 +10,7 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect
```

## unreleased
* [FEATURE] [#487](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/487) Add DSE 6.8.48, Cassandra 4.1.5 and Cassandra 4.0.13 to the build matrix

## v0.1.78 (2024-05-16)
* [CHANGE] [#486](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/486) Support HCD
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-4_0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG CASSANDRA_VERSION=4.0.12
ARG CASSANDRA_VERSION=4.0.13

FROM --platform=$BUILDPLATFORM maven:3.8.7-eclipse-temurin-11 as builder

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-4_0.ubi8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG UBI_MAJOR=8
ARG UBI_BASETAG=latest
ARG CASSANDRA_VERSION=4.0.12
ARG CASSANDRA_VERSION=4.0.13
FROM registry.access.redhat.com/ubi${UBI_MAJOR}/ubi-minimal:${UBI_BASETAG} AS builder

ARG URL_PREFIX=https://dlcdn.apache.org/cassandra
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-4_1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG CASSANDRA_VERSION=4.1.4
ARG CASSANDRA_VERSION=4.1.5

FROM --platform=$BUILDPLATFORM maven:3.8.7-eclipse-temurin-11 as builder

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-4_1.ubi8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG UBI_MAJOR=8
ARG UBI_BASETAG=latest
ARG CASSANDRA_VERSION=4.1.4
ARG CASSANDRA_VERSION=4.1.5
FROM registry.access.redhat.com/ubi${UBI_MAJOR}/ubi-minimal:${UBI_BASETAG} AS builder

ARG URL_PREFIX=https://dlcdn.apache.org/cassandra
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ The following versions of Cassandra and DSE are published to Docker and supporte
| 3.11.11 | 4.0.3 | 4.1.2 | 6.8.28 |
| 3.11.12 | 4.0.4 | 4.1.3 | 6.8.29 |
| 3.11.13 | 4.0.5 | 4.1.4 | 6.8.30 |
| 3.11.14 | 4.0.6 | | 6.8.31 |
| 3.11.14 | 4.0.6 | 4.1.5 | 6.8.31 |
| 3.11.15 | 4.0.7 | | 6.8.32 |
| 3.11.16 | 4.0.8 | | 6.8.33 |
| 3.11.17 | 4.0.9 | | 6.8.34 |
| | 4.0.10 | | 6.8.35 |
| | 4.0.11 | | 6.8.36 |
| | 4.0.12 | | 6.8.37 |
| | | | 6.8.38 |
| | 4.0.13 | | 6.8.38 |
| | | | 6.8.39 |
| | | | 6.8.40 |
| | | | 6.8.41 |
Expand All @@ -77,6 +77,7 @@ The following versions of Cassandra and DSE are published to Docker and supporte
| | | | 6.8.44 |
| | | | 6.8.46 |
| | | | 6.8.47 |
| | | | 6.8.48 |

- 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-68/Dockerfile.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.47
ARG DSE_VERSION=6.8.48
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-68/Dockerfile.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.47
ARG DSE_VERSION=6.8.48
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-68/Dockerfile.ubi8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DSE_VERSION=6.8.47
ARG DSE_VERSION=6.8.48
ARG UBI_MAJOR=8
ARG UBI_BASETAG=latest

Expand Down
2 changes: 1 addition & 1 deletion management-api-agent-4.1.x/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<version>${revision}</version>
<artifactId>datastax-mgmtapi-agent-4.1.x</artifactId>
<properties>
<cassandra4.version>4.1.4</cassandra4.version>
<cassandra4.version>4.1.5</cassandra4.version>
</properties>
<dependencies>
<dependency>
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.47</dse.version>
<dse.version>6.8.48</dse.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<revision>0.1.0-SNAPSHOT</revision>
<driver.version>4.15.0</driver.version>
<cassandra3.version>3.11.17</cassandra3.version>
<cassandra4.version>4.0.12</cassandra4.version>
<cassandra4.version>4.0.13</cassandra4.version>
<docker.java.version>3.3.6</docker.java.version>
<junit.version>4.13.2</junit.version>
<assertj.version>3.17.2</assertj.version>
Expand Down

0 comments on commit 539b251

Please sign in to comment.