Skip to content
Snippets Groups Projects
overcloud-upgrade.sh 348 B
Newer Older
  • Learn to ignore specific revisions
  • Mark Goddard's avatar
    Mark Goddard committed
    #!/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
        overcloud_upgrade
    }
    
    main