Skip to content

Commit

Permalink
Upgrade DSE UBI images to 8 for ARM64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
emerkle826 committed Jul 12, 2023
1 parent 5b8cd60 commit 540c820
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,18 @@ Cassandra trunk (currently, these are nightly builds)

DSE 6.8.x

datastax/dse-mgmtapi-6_8:6.8.25 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.26 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.28 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.29 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.30 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.31 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.32 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.33 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.34 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.35 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.36 (jdk8, jdk11 and ubi7 based images)
datastax/dse-mgmtapi-6_8:6.8.25 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.26 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.28 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.29 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.30 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.31 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.32 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.33 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.34 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.35 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.36 (jdk8, jdk11 and ubi8 based images)
datastax/dse-mgmtapi-6_8:6.8.37 (jdk8, jdk11 and ubi8 based images)

### Cassandra trunk

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.36
ARG DSE_VERSION=6.8.37
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.36
ARG DSE_VERSION=6.8.37
ARG URL_PREFIX=https://downloads.datastax.com/enterprise
ARG TARBALL=dse-${DSE_VERSION}-bin.tar.gz
ARG DOWNLOAD_URL=${URL_PREFIX}/${TARBALL}
Expand Down
8 changes: 4 additions & 4 deletions dse-68/Dockerfile.ubi7 → dse-68/Dockerfile.ubi8
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

ARG VERSION=6.8.36
ARG BASETAG=7.8
ARG VERSION=6.8.37
ARG BASETAG=8.8

FROM datastax/dse-mgmtapi-6_8:${VERSION} AS dse-server-base

#############################################################

# Based on ubi7 for Python 2 support, when moving to Python 3 use ubi8
FROM registry.access.redhat.com/ubi7/ubi-minimal:${BASETAG} as dse68
FROM registry.access.redhat.com/ubi8/ubi-minimal:${BASETAG} as dse68

LABEL maintainer="DataStax, Inc <[email protected]>"
LABEL name="dse-server"
Expand All @@ -24,7 +24,7 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# Install runtime dependencies and updates
RUN microdnf update && rm -rf /var/cache/yum && \
microdnf install --nodocs -y java-1.8.0-openjdk-headless java-1.8.0-openjdk-devel python zlib libaio which findutils hostname && microdnf clean all
microdnf install --nodocs -y java-1.8.0-openjdk-headless java-1.8.0-openjdk-devel python2 zlib libaio which findutils hostname iproute shadow-utils procps util-linux glibc-langpack-en && microdnf clean all

WORKDIR $HOME

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 @@ -29,7 +29,7 @@
</repository>
</repositories>
<properties>
<dse.version>6.8.36</dse.version>
<dse.version>6.8.37</dse.version>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit 540c820

Please sign in to comment.