8000 chore: bump rabbitmq to 3.13 by jennifer-richards · Pull Request #8603 · ietf-tools/datatracker · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: bump rabbitmq to 3.13 #8603

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

Merged
merged 4 commits into from
Mar 26, 2025
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
15 changes: 9 additions & 6 deletions .github/workflows/build-mq-broker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ on:
- 'dev/mq/**'
- '.github/workflows/build-mq-broker.yml'

workflow_dispatch:

env:
RABBITMQ_VERSION: 3.12-alpine
workflow_dispatch:
inputs:
rabbitmq_version:
description: 'RabbitMQ Version'
default: '3.13-alpine'
required: true
type: string

jobs:
publish:
Expand Down Expand Up @@ -45,7 +48,7 @@ jobs:
file: dev/mq/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
build-args: RABBITMQ_VERSION=${{ env.RABBITMQ_VERSION }}
build-args: RABBITMQ_VERSION=${{ inputs.rabbitmq_version }}
tags: |
ghcr.io/ietf-tools/datatracker-mq:${{ env.RABBITMQ_VERSION }}
ghcr.io/ietf-tools/datatracker-mq:${{ inputs.rabbitmq_version }}
ghcr.io/ietf-tools/datatracker-mq:latest
2 changes: 1 addition & 1 deletion k8s/rabbitmq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
# -----------------------------------------------------
# RabbitMQ Container
# -----------------------------------------------------
- image: "ghcr.io/ietf-tools/datatracker-mq:3.12-alpine"
- image: "ghcr.io/ietf-tools/datatracker-mq:3.13-alpine"
imagePullPolicy: Always
name: rabbitmq
ports:
Expand Down
0