Build Kolla container images #832
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build Kolla container images | |
on: | |
workflow_dispatch: | |
inputs: | |
debug_ssh_key: | |
description: 'A key used to login to the AIO for debugging' | |
required: true | |
type: string | |
jobs: | |
build-kayobe-image: | |
name: Build Kayobe Image | |
uses: ./.github/workflows/stackhpc-build-kayobe-image.yml | |
with: | |
if: ${{ needs.check-changes.outputs.aio == 'true' }} | |
if: github.repository == 'stackhpc/stackhpc-kayobe-config' | |
all-in-one-upgrade-ubuntu-jammy-ovs: | |
name: aio upgrade (Ubuntu Jammy OVS) | |
needs: | |
- build-kayobe-image | |
uses: ./.github/workflows/stackhpc-all-in-one.yml | |
with: | |
kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }} | |
os_distribution: ubuntu | |
os_release: jammy | |
ssh_username: ubuntu | |
neutron_plugin: ovs | |
OS_CLOUD: openstack | |
upgrade: true | |
destroy: false | |
debug_ssh_key: ${{ inputs.debug_ssh_key }} | |
secrets: inherit | |
if: ${{ ! failure() && ! cancelled() && github.repository == 'stackhpc/stackhpc-kayobe-config' }} |