Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded Kafka Version #42

Merged
merged 5 commits into from
Nov 23, 2023
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
name: E2E

on:

Check warning on line 4 in .github/workflows/e2e.yaml

View workflow job for this annotation

GitHub Actions / MegaLinter

4:1 [truthy] truthy value should be one of [false, true]
workflow_call:
workflow_dispatch:
schedule:
- cron: "0 3 * * *"
push:
branches: [ 'main', 'release/v**' ]
branches: ["main", "release/v**"]
pull_request:
branches: [ 'main', 'release/v**' ]
types: [ opened, synchronize, reopened, labeled ]
branches: ["main", "release/v**"]
types: [opened, synchronize, reopened, labeled]

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/megalinter.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: MegaLinter

"on":
on:

Check warning on line 4 in .github/workflows/megalinter.yaml

View workflow job for this annotation

GitHub Actions / MegaLinter

4:1 [truthy] truthy value should be one of [false, true]
workflow_dispatch:
push:
branches:
Expand All @@ -22,7 +22,7 @@
env:
# When active, APPLY_FIXES must also be defined as environment variable
# (in github/workflows/mega-linter.yml or other CI tool)
APPLY_FIXES: all
APPLY_FIXES: none

# Decide which event triggers application of fixes in a commit or a PR
# (pull_request, push, all)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wait-for-all-checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
name: summary
on:

Check warning on line 3 in .github/workflows/wait-for-all-checks.yml

View workflow job for this annotation

GitHub Actions / MegaLinter

3:1 [truthy] truthy value should be one of [false, true]
pull_request:
jobs:
enforce-all-checks:
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
# This file is needed for .env to work
version: "3"
6 changes: 3 additions & 3 deletions docker-compose/kafka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.1"

services:
zookeeper:
image: quay.io/strimzi/kafka:0.33.2-kafka-3.2.3
image: quay.io/strimzi/kafka:0.38.0-kafka-3.6.0
platform: linux/amd64
command:
["sh", "-c", "bin/zookeeper-server-start.sh config/zookeeper.properties"]
Expand All @@ -20,7 +20,7 @@ services:
- full

kafka:
image: ${DOCKER_REGISTRY-}cheetah-infrastructure-utils-kafka:strimzi-0.33.0-kafka-3.3.2-trifork-1.4.0
image: ${DOCKER_REGISTRY-}cheetah-infrastructure-utils-kafka:strimzi-0.38.0-kafka-3.6.0-trifork-1.5.0
platform: linux/amd64
hostname: kafka
mem_limit: 1024m
Expand Down Expand Up @@ -58,7 +58,7 @@ services:
- full

kafka-setup:
image: quay.io/strimzi/kafka:0.33.2-kafka-3.3.2
image: quay.io/strimzi/kafka:0.38.0-kafka-3.6.0
platform: linux/amd64
container_name: kafka-setup
volumes:
Expand Down
Loading