Skip to content

Commit

Permalink
Add 5.0.2 to the build matrix (#550)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Erik Merkle <[email protected]>
  • Loading branch information
burmanm and emerkle826 authored Oct 23, 2024
1 parent 25819d8 commit 2cc4fb6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -410,9 +410,9 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
cassandra-version: [5.0.1]
cassandra-version: [5.0.1, 5.0.2]
include:
- cassandra-version: 5.0.1
- cassandra-version: 5.0.2
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 @@ -11,6 +11,7 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect

## unreleased
* [ENHANCEMENT] [#552](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/552) Improve "liveness" probe implementation
* [FEATURE] [#551](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/551) Add Cassandra 5.0.2 to the build matrix

## v0.1.87 (2024-10-02)
* [FEATURE] [#535](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/535) Add Cassandra 5.0.0 to the build matrix
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
The following versions of Cassandra and DSE are published to Docker and supported:

| Cassandra 3.11.x | Cassandra 4.0.x | Cassandra 4.1.x | Cassandra 5.0.x | DSE 6.8.x | DSE 6.9.x | HCD 1.0.x |
| ---------------- | --------------- | --------------- | --------------- | --------- | ------------- | ----------|
| ---------------- | --------------- | --------------- |-----------------| --------- | ------------- | ----------|
| 3.11.7 | 4.0.0 | 4.1.0 | 5.0.1 | 6.8.25 | 6.9.0 | 1.0.0 |
| 3.11.8 | 4.0.1 | 4.1.1 | | 6.8.26 | 6.9.1 | |
| 3.11.8 | 4.0.1 | 4.1.1 | 5.0.2 | 6.8.26 | 6.9.1 | |
| 3.11.11 | 4.0.3 | 4.1.2 | | 6.8.28 | 6.9.2 | |
| 3.11.12 | 4.0.4 | 4.1.3 | | 6.8.29 | | |
| 3.11.13 | 4.0.5 | 4.1.4 | | 6.8.30 | | |
Expand Down
2 changes: 1 addition & 1 deletion cassandra/Dockerfile-5.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=5.0.1
ARG CASSANDRA_VERSION=5.0.2
FROM registry.access.redhat.com/ubi${UBI_MAJOR}/ubi-minimal:${UBI_BASETAG} AS builder

ARG URL_PREFIX=https://dlcdn.apache.org/cassandra
Expand Down
10 changes: 5 additions & 5 deletions management-api-agent-5.0.x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ as the 5.1-SNAPSHOT version of Cassandra in trunk.

For Cassandra versions that have been publicly released and have Maven artifacts published, you can simply run
the main project Maven build. The pom.xml file in this sub-module should have the `cassandra5.version` property
set to the latest published version (`5.0.1` as of this writing). If you wish to build for a different
published version, for example `5.0.2` when it is released, specify the version:
set to the latest published version (`5.0.2` as of this writing). If you wish to build for a different
published version, for example `5.0.3` when it is released, specify the version:

```sh
mvn package -Dcassandra5.version=5.0.2
mvn package -Dcassandra5.version=5.0.3
```

## Building Against Cassandra Trunk
Expand Down Expand Up @@ -55,7 +55,7 @@ mvn package -Dcassandra5.version=5.1-SNAPSHOT

As Management API releases are published, a build of this image will be available in DockerHub at:

k8ssandra/cass-management-api:5.0.1
k8ssandra/cass-management-api:5.0.2

### Building Images Locally for Cassandra trunk

Expand All @@ -73,6 +73,6 @@ The latest [MCAC agent](https://github.com/datastax/metric-collector-for-apache-
If you want to use this image with Docker, you must set the environment variable `MGMT_API_DISABLE_MCAC` to `true`:

```sh
docker run -e MGMT_API_DISABLE_MCAC=true k8ssandra/cass-management-api:5.0.1
docker run -e MGMT_API_DISABLE_MCAC=true k8ssandra/cass-management-api:5.0.2
```

2 changes: 1 addition & 1 deletion management-api-agent-5.0.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-5.0.x</artifactId>
<properties>
<cassandra5.version>5.0.1</cassandra5.version>
<cassandra5.version>5.0.2</cassandra5.version>
<netty.http.codec.version>4.1.96.Final</netty.http.codec.version>
</properties>
<dependencies>
Expand Down

0 comments on commit 2cc4fb6

Please sign in to comment.