kayobe/dev/overcloud-upgrade.sh
Will Szumski f5d026badb Align Kayobe Ansible version with Kolla Ansible
This change bumps up the maximum supported Ansible version to 10.x
(ansible-core 2.17.x) and minimum to 9.x. This synchronises Kayobe with
Kolla Ansible.

Change-Id: Idfbf0eed0b2333d550f822e40a0d96ae227f6159
2024-11-05 11:20:47 +01:00

23 lines
450 B
Bash
Executable File

#!/bin/bash
set -eu
set -o pipefail
# Simple script to upgrade a development environment for an OpenStack
# controller in a Vagrant VM using kayobe. This should be executed from within
# the VM.
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${PARENT}/functions"
function main {
config_init
# NOTE(wszusmki): Dependencies such as python can change across versions
install_dependencies
overcloud_upgrade
}
main