-
Notifications
You must be signed in to change notification settings - Fork 23
2024.1: 2023.1 merge #1242
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
Merged
Merged
2024.1: 2023.1 merge #1242
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
7964b40
aufn/ceph: Update tenks.yml storage allocation
assumptionsandg f5db1eb
aufn/ceph: Change default storage capacities
assumptionsandg 0f6c73e
Merge pull request #1229 from stackhpc/zed-yoga-merge
markgoddard bb9263c
fix: typo in playbook run command
jackhodgkiss 0af19ab
Merge pull request #1232 from stackhpc/fix-doc-monitoring-typo
priteau eba7674
Bump kayobe automation
Alex-Welsh 282338c
Merge pull request #1234 from stackhpc/bump-automation
Alex-Welsh 5ee3d28
CI: Add multinode workflow
markgoddard 93d1b47
Merge pull request #1199 from stackhpc/2023.1-multinode-workflow
markgoddard e84bb74
CI: Fix loss of number type when calling reusable workflow
markgoddard 810d987
Make fix-hostname playbook more generic
Alex-Welsh ac9677a
magnum-capi-helm: bump to 1.1.0
mnasiadka 11b67a9
Merge pull request #1239 from stackhpc/2023.1-multinode-workflow
markgoddard b64566e
Merge branch 'stackhpc/yoga' into aufn-tenks-storage
markgoddard 1e63262
Merge pull request #596 from stackhpc/aufn-tenks-storage
markgoddard dd02dbe
Merge pull request #1238 from stackhpc/magnum_capi_1_1_0
mnasiadka 860b818
Merge pull request #1237 from stackhpc/aio-init-fix
markgoddard c2218ab
Add diagnostics.sh
markgoddard 66ce723
Add diagnostics.yml playbook
markgoddard 011466c
CI: Collect diagnostic information at end of aio jobs
markgoddard 57e321c
CI: Add SSH key to .ssh for synchronize module in diagnostics.yml
markgoddard 410e54b
Merge pull request #1212 from stackhpc/yoga-diagnostics
markgoddard 2e2ff99
Merge stackhpc/yoga into stackhpc/zed
markgoddard 09275df
Merge stackhpc/zed into stackhpc/2023.1
markgoddard e098d3a
Merge stackhpc/2023.1 into stackhpc/2024.1
markgoddard 87c3562
CI: Fix previous version in multinode.yml for Caracal
markgoddard dd32fce
CI: Remove unnecessary step in aio
markgoddard 5beed70
Add a default for kolla_build_args
markgoddard fc01221
CI: Remove unnecessary step in aio
markgoddard 0729994
Merge stackhpc/2023.1 into stackhpc/2024.1
markgoddard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
# This workflow provides a workflow_dispatch (manual) trigger to deploy a | ||
# multi-node test cluster. | ||
|
||
name: Multinode | ||
'on': | ||
workflow_dispatch: | ||
# NOTE: workflow_dispatch is limited to 10 inputs. | ||
inputs: | ||
multinode_name: | ||
description: Multinode cluster name | ||
type: string | ||
required: true | ||
os_distribution: | ||
description: Host OS distribution | ||
type: choice | ||
default: rocky | ||
options: | ||
- rocky | ||
- ubuntu | ||
neutron_plugin: | ||
description: Neutron ML2 plugin | ||
type: choice | ||
default: ovn | ||
options: | ||
- ovn | ||
- ovs | ||
upgrade: | ||
description: Whether to perform an upgrade | ||
type: boolean | ||
default: false | ||
break_on: | ||
description: When to break execution for manual interaction | ||
type: choice | ||
default: never | ||
options: | ||
- always | ||
- failure | ||
- never | ||
- success | ||
break_duration: | ||
description: How long to break execution for (minutes) | ||
type: number | ||
default: 60 | ||
ssh_key: | ||
description: SSH public key to authorise on Ansible control host | ||
type: string | ||
terraform_kayobe_multinode_version: | ||
description: terraform-kayobe-multinode version | ||
type: string | ||
default: main | ||
jobs: | ||
multinode: | ||
name: Multinode | ||
uses: stackhpc/stackhpc-openstack-gh-workflows/.github/workflows/[email protected] | ||
with: | ||
multinode_name: ${{ inputs.multinode_name }} | ||
os_distribution: ${{ inputs.os_distribution }} | ||
os_release: ${{ inputs.os_distribution == 'rocky' && '9' || 'jammy' }} | ||
ssh_username: ${{ inputs.os_distribution == 'rocky' && 'cloud-user' || 'ubuntu' }} | ||
neutron_plugin: ${{ inputs.neutron_plugin }} | ||
upgrade: ${{ inputs.upgrade }} | ||
break_on: ${{ inputs.break_on }} | ||
# Workaround loss of number type using fromJSON: https://github.com/orgs/community/discussions/67182 | ||
break_duration: ${{ fromJSON(inputs.break_duration) }} | ||
ssh_key: ${{ inputs.ssh_key }} | ||
stackhpc_kayobe_config_version: ${{ github.ref_name }} | ||
# NOTE(upgrade): Reference the PREVIOUS release here. | ||
stackhpc_kayobe_config_previous_version: stackhpc/2023.1 | ||
terraform_kayobe_multinode_version: ${{ inputs.terraform_kayobe_multinode_version }} | ||
secrets: inherit |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
features: | ||
- | | ||
``magnum-capi-helm`` driver has been updated to 1.1.0. | ||
Please see `magnum-capi-helm release notes <https://docs.openstack.org/releasenotes/magnum-capi-helm/unreleased.html#relnotes-1-1-0>`_ | ||
for changes. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.