Skip to content

Commit

Permalink
Merge "[2023.1 only] Add a script to upgrade RMQ to 3.13" into stable…
Browse files Browse the repository at this point in the history
…/2023.1
  • Loading branch information
Zuul authored and openstack-gerrit committed Oct 16, 2024
2 parents 3b3ddbd + 7ffc73f commit cf32a83
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions dev/rabbitmq-pre-slurp-upgrade.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash

set -eu
set -o pipefail

# Install kayobe and its dependencies in a virtual environment.

PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

source "${PARENT}/functions"

function main {
echo "Upgrading RabbitMQ to version 3.13"

config_init

environment_setup

control_host_bootstrap

kayobe kolla ansible run "rabbitmq-upgrade 3.12"

kayobe kolla ansible run "rabbitmq-upgrade 3.13"
}

main

0 comments on commit cf32a83

Please sign in to comment.