Build Kolla container images #829
This file contains hidden or 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: | ||
Check failure on line 13 in .github/workflows/stackhpc-container-image-build.yml
|
||
name: Build Kayobe Image | ||
needs: | ||
- check-changes | ||
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' }} |