Skip to content

Commit

Permalink
Merge pull request #30 from sleighzy/upgrade-to-kafka-3.2.3
Browse files Browse the repository at this point in the history
Upgrade to Kafka 3.2.3
  • Loading branch information
sleighzy committed Oct 23, 2022
2 parents c13e00b + d82bfb0 commit 546f598
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions defaults/main/001-kafka.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
# The Apache Kafka version to be downloaded and installed
# kafka_download_base_url should be set to https://archive.apache.org/dist/kafka/ for older versions than the current
kafka_download_base_url: https://dlcdn.apache.org/kafka
kafka_download_base_url: https://downloads.apache.org/kafka
kafka_download_validate_certs: yes
kafka_version: 3.2.0
kafka_version: 3.2.3
kafka_scala_version: 2.13

# The kafka user and group to create files/dirs with and for running the kafka service
Expand Down
8 changes: 4 additions & 4 deletions molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
- "'kafka' in getent_passwd"
- "'kafka' in getent_group"

- name: Register '/opt/kafka_2.13-3.2.0' installation directory status
- name: Register '/opt/kafka_2.13-3.2.3' installation directory status
stat:
path: '/opt/kafka_2.13-3.2.0'
path: '/opt/kafka_2.13-3.2.3'
register: install_dir

- name: Assert that '/opt/kafka_2.13-3.2.0' directory is created
- name: Assert that '/opt/kafka_2.13-3.2.3' directory is created
assert:
that:
- install_dir.stat.exists
Expand All @@ -39,7 +39,7 @@
that:
- kafka_dir.stat.exists
- kafka_dir.stat.islnk
- kafka_dir.stat.lnk_target == '/opt/kafka_2.13-3.2.0'
- kafka_dir.stat.lnk_target == '/opt/kafka_2.13-3.2.3'

- name: Register '/var/log/kafka' directory status
stat:
Expand Down

0 comments on commit 546f598

Please sign in to comment.