Skip to content

Commit

Permalink
Merge branch 'w/2.7/bugfix/ZENKO-4745' into w/2.8/bugfix/ZENKO-4745
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisferrand committed Feb 26, 2024
2 parents df97bfa + ce8cbb2 commit 5eedae0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/scripts/end2end/configs/zenkoversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spec:
s3utils:
image: "${S3UTILS_DASHBOARD}"
tag: "${S3UTILS_TAG}"
kafkaCleaner:
image: "${KAFKA_CLEANER_DASHBOARD}"
tag: "${KAFKA_CLEANER_TAG}"
# kafka:
# image: kafka-dashboard
# tag: '${ZENKO_VERSION_NAME}'
Expand Down Expand Up @@ -85,6 +88,9 @@ spec:
image: "${ZOOKEEPER_IMAGE}"
tag: "${ZOOKEEPER_TAG}"
kafka:
cleaner:
image: '${KAFKA_CLEANER_IMAGE}'
tag: '${KAFKA_CLEANER_TAG}'
cluster:
image: "${KAFKA_IMAGE}"
tag: "${KAFKA_TAG}"
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@ jobs:
- name: Fetch tags
run: git fetch --tags

- name: 'Check if tag matches the branch name'
shell: bash
run: \
[[ "development/${{ github.event.inputs.tag }}" == "${{ github.ref }}."* ]]

- name: 'Check if tag is set in VERSION file'
shell: bash
run: \
source VERSION
[[ "${{ github.event.inputs.tag }}" == "$VERSION_FULL" ]]

- name: 'Check if tag was already created'
shell: bash
run: >
Expand Down
2 changes: 1 addition & 1 deletion solution/zenkoversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
tag: '${VERSION_FULL}'
kafkaCleaner:
image: kafka-cleaner-dashboards
tag: '${VERSION_FULL}'
tag: '${KAFKA_CLEANER_TAG}'
kafkaConnect:
image: kafka-connect-dashboard
tag: '${VERSION_FULL}'
Expand Down

0 comments on commit 5eedae0

Please sign in to comment.