f5d026badb
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
22 lines
414 B
Bash
Executable File
22 lines
414 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Simple script to upgrade a development environment for a seed VM using
|
|
# kayobe. This should be executed from the hypervisor.
|
|
|
|
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
|
|
seed_upgrade
|
|
}
|
|
|
|
main
|