-
Notifications
You must be signed in to change notification settings - Fork 23
DOCA workflow support #1469
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
DOCA workflow support #1469
Changes from 9 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
adb4152
DOCA workflow support
assumptionsandg e26298b
Try use kernel meta package
assumptionsandg 9650481
Add DOCA install playbook
c271261
Release note
assumptionsandg 9986dfc
Fix bad merge conflict
assumptionsandg 2a93d4d
Fix whitespace
assumptionsandg fb78583
Use command instead
assumptionsandg f83772f
Default to false
assumptionsandg 37fa44d
Merge branch 'stackhpc/2024.1' into ofed-fixes
assumptionsandg d224b74
Fix release note
assumptionsandg 7b27767
Merge branch 'ofed-fixes' of github.com:stackhpc/stackhpc-kayobe-conf…
assumptionsandg f66506c
Create DOCA builder env
assumptionsandg 931e82c
Disable DOCA by default in group_vars
assumptionsandg aed1a30
Fix environment
assumptionsandg 4aa733b
Add Release Train documentation
assumptionsandg 05b7150
FIx typos
assumptionsandg 155d0ba
Update doc/source/contributor/ofed.rst
assumptionsandg 7ed300b
Apply suggestions from code review
assumptionsandg 39f74db
Update doc/source/contributor/ofed.rst
assumptionsandg af83055
Address review comments
assumptionsandg d744c46
Disable docker repo
assumptionsandg 0706f6b
Fix package list
assumptionsandg e92d361
Test docker
assumptionsandg 9766b10
Seed configure fix
assumptionsandg 248270b
Update doc/source/contributor/ofed.rst
assumptionsandg 7fdaab6
Reboot
assumptionsandg abb14a4
Fix reboot doc
assumptionsandg ce973ac
Default pulp ofed sync
assumptionsandg 1e9f1ab
Update Pulp sync condition
assumptionsandg 343014f
Fixup DOCA DNF install variable
assumptionsandg 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
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,28 @@ | ||
--- | ||
- name: Install DOCA | ||
become: true | ||
hosts: mlnx | ||
gather_facts: true | ||
tasks: | ||
- name: Get running kernel | ||
ansible.builtin.command: | ||
cmd: "uname -r" | ||
register: kernel | ||
|
||
- name: Install kernel repo | ||
ansible.builtin.dnf: | ||
name: doca-kernel-repo | ||
state: latest | ||
update_cache: true | ||
|
||
- name: Ensure correct priority for DOCA modules | ||
ansible.builtin.lineinfile: | ||
line: "priority=-2" | ||
Alex-Welsh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
insertafter: EOF | ||
path: "/etc/yum.repos.d/doca-kernel-{{ kernel.stdout }}.repo" | ||
|
||
- name: Install DOCA OFED | ||
ansible.builtin.dnf: | ||
name: doca-ofed | ||
state: latest | ||
update_cache: true |
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
Oops, something went wrong.
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.