Skip to content

Build Kolla container images #829

Build Kolla container images

Build Kolla container images #829

---
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

View workflow run for this annotation

GitHub Actions / Build Kolla container images

Invalid workflow file

The workflow is not valid. .github/workflows/stackhpc-container-image-build.yml (Line: 13, Col: 3): The workflow must contain at least one job with no dependencies.
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' }}