Skip to content

Commit

Permalink
[ODEV-1197] Increase the version of the kafka tool (#328)
Browse files Browse the repository at this point in the history
[OSDEV-1197](https://opensupplyhub.atlassian.net/browse/OSDEV-1197) -
Upgrade the Kafka tool version to the newest version.

The Kafka tools were upgraded to version 3.8.0

[OSDEV-1197]:
https://opensupplyhub.atlassian.net/browse/OSDEV-1197?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ

---------

Co-authored-by: mazur <[email protected]>
  • Loading branch information
vladsha-dev and mazursasha1990 authored Aug 19, 2024
1 parent b241e3a commit ccb3025
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions doc/release/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
* [OSDEV-1165](https://opensupplyhub.atlassian.net/browse/OSDEV-1165) - Updated the release protocol to include information about quick fixes and how to perform them. Additionally, updated the GitFlow diagram to visually depict this process.
* Updated the `RELEASE-PROTOCOL.md` file to include information about OpenSearch and Logstash, stating that their functionality should also be checked after deployment.
* [OSDEV-1169](https://opensupplyhub.atlassian.net/browse/OSDEV-1169) - Activated deployment database-anonymizer to production.
* [OSDEV-1197](https://opensupplyhub.atlassian.net/browse/OSDEV-1197) - Upgrade Kafka tools to version 3.8.0

### Bugfix
* [OSDEV-1048](https://opensupplyhub.atlassian.net/browse/OSDEV-1048) - Fixed error "User Cannot read properties of undefined (reading 'length')".
Expand Down
8 changes: 4 additions & 4 deletions src/kafka-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ FROM amazonlinux:latest

WORKDIR /opt/
RUN yum install -y java-1.8.0 wget tar
RUN wget https://dlcdn.apache.org/kafka/3.5.2/kafka_2.13-3.5.2.tgz
RUN tar -xzf kafka_2.13-3.5.2.tgz
RUN ln /opt/kafka_2.13-3.5.2/bin/kafka-topics.sh /bin/kafka-topics
WORKDIR /opt/kafka_2.13-3.5.2/
RUN wget https://dlcdn.apache.org/kafka/3.8.0/kafka_2.13-3.8.0.tgz
RUN tar -xzf kafka_2.13-3.8.0.tgz
RUN ln /opt/kafka_2.13-3.8.0/bin/kafka-topics.sh /bin/kafka-topics
WORKDIR /opt/kafka_2.13-3.8.0/
COPY ssl.config kafka.sh list.txt .

RUN chmod +x kafka.sh

0 comments on commit ccb3025

Please sign in to comment.