Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect

## unreleased
* [ENHANCEMENT] [#686](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/686) Avoid pulling from Apache archives
* [ENHANCEMENT] [#680](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/680) Update cdc-agent to 2.3.2
* [BUGFIX] [#684](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/684) Fix Cassandra trunk builds
* [BUGFIX] [#678](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/678) Older certificates broken for UBI9

## v0.1.108 [2025-08-2020]
* [CHANGE] [#670](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/670) Update OpenJDK 11 install for UBI based images
Expand Down
3 changes: 3 additions & 0 deletions cassandra-trunk/Dockerfile-trunk.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh && \
# fix for the missing mtab in the containerd
ln -sf /proc/mounts /etc/mtab

# Set OS crypto policy to LEGACY to allow for older algorithms
RUN update-crypto-policies --set LEGACY

ENV TINI_VERSION=v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TARGETARCH} /tini
RUN chmod +x /tini
Expand Down
4 changes: 3 additions & 1 deletion cassandra/Dockerfile-4.0.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ RUN microdnf install -y --nodocs shadow-utils \
&& useradd -m -d "$CASSANDRA_HOME" -r -g cassandra -G root --uid=999 cassandra \
&& microdnf update && rm -rf /var/cache/yum \
# Install packages needed during install process
&& microdnf install -y --nodocs temurin-11-jdk tzdata-java python3 zlib findutils which hostname iproute procps util-linux glibc-langpack-en wget tar \
&& microdnf install -y --nodocs temurin-11-jdk tzdata-java python3 zlib findutils which hostname iproute procps util-linux glibc-langpack-en wget tar crypto-policies-scripts \
# Set OS crypto policy to LEGACY to allow for older algorithms
&& update-crypto-policies --set LEGACY \
&& microdnf clean all

# Copy trimmed installation
Expand Down
4 changes: 3 additions & 1 deletion cassandra/Dockerfile-4.1.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ RUN microdnf install -y --nodocs shadow-utils \
&& useradd -m -d "$CASSANDRA_HOME" -r -g cassandra -G root --uid=999 cassandra \
&& microdnf update && rm -rf /var/cache/yum \
# Install packages needed during install process
&& microdnf install -y --nodocs temurin-11-jdk tzdata-java python3 zlib findutils which hostname iproute procps util-linux glibc-langpack-en wget tar \
&& microdnf install -y --nodocs temurin-11-jdk tzdata-java python3 zlib findutils which hostname iproute procps util-linux glibc-langpack-en wget tar crypto-policies-scripts \
# Set OS crypto policy to LEGACY to allow for older algorithms
&& update-crypto-policies --set LEGACY \
&& microdnf clean all

# Copy trimmed installation
Expand Down
3 changes: 3 additions & 0 deletions cassandra/Dockerfile-5.0.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh && \
# fix for the missing mtab in the containerd
ln -sf /proc/mounts /etc/mtab

# Set OS crypto policy to LEGACY to allow for older algorithms
RUN update-crypto-policies --set LEGACY

ENV TINI_VERSION=v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TARGETARCH} /tini
RUN chmod +x /tini
Expand Down
5 changes: 4 additions & 1 deletion dse/Dockerfile-dse6.9.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ COPY dse/files/adoptium.repo /etc/yum.repos.d/adoptium.repo

# Install runtime dependencies and updates
RUN microdnf update && rm -rf /var/cache/yum && \
microdnf install --nodocs -y temurin-11-jdk python39 zlib libaio which findutils hostname iproute shadow-utils procps util-linux glibc-langpack-en wget tar && microdnf clean all
microdnf install --nodocs -y temurin-11-jdk python39 zlib libaio which findutils hostname iproute shadow-utils procps util-linux glibc-langpack-en wget tar crypto-policies-scripts \
# Set OS crypto policy to LEGACY to allow for older algorithms
&& update-crypto-policies --set LEGACY \
&& microdnf clean all

WORKDIR $HOME

Expand Down
Loading