Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added parameters to AIO and image build workflows to be reused by external CI #1454

Merged
merged 11 commits into from
Jan 17, 2025
6 changes: 5 additions & 1 deletion .github/workflows/stackhpc-all-in-one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ on:
description: Whether to perform an upgrade
type: boolean
default: false
openstack_tests_version:
wtripp180901 marked this conversation as resolved.
Show resolved Hide resolved
description: Git version of https://github.com/stackhpc/stackhpc-openstack-tests to use for testing
type: string
default: v0.0.1
secrets:
KAYOBE_VAULT_PASSWORD:
required: true
Expand Down Expand Up @@ -448,7 +452,7 @@ jobs:
-v $(pwd)/sot-results:/stack/sot-results \
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
$KAYOBE_IMAGE \
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/stackhpc-openstack-tests.yml'
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/stackhpc-openstack-tests.yml -e sot_version=${{ inputs.openstack_tests_version }}'
env:
KAYOBE_AUTOMATION_SSH_PRIVATE_KEY: ${{ steps.ssh_key.outputs.ssh_key }}

Expand Down
Loading