-
Notifications
You must be signed in to change notification settings - Fork 25
Bump DOCA OFED to 3.2.2 #2233
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
base: stackhpc/2025.1
Are you sure you want to change the base?
Bump DOCA OFED to 3.2.2 #2233
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -201,8 +201,8 @@ stackhpc_repo_centos_stream_10_docker_version: "{{ stackhpc_repo_distribution }} | |
| stackhpc_repo_rhel_10_mariadb_10_11_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/mariadb-10.11/yum/rhel/10/{{ kolla_base_arch }}/{{ stackhpc_repo_rhel_10_mariadb_10_11_version }}" | ||
| stackhpc_repo_rhel_10_mariadb_10_11_version: "{{ stackhpc_repo_distribution }}" | ||
|
|
||
| # DOCA Repository 3.2.1 for RHEL 10 | ||
| stackhpc_repo_rhel10_doca_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/doca/3.2.1/rhel10/{{ kolla_base_arch }}/{{ stackhpc_repo_rhel10_doca_version }}" | ||
| # DOCA Repository 3.2.2 for RHEL 10 | ||
| stackhpc_repo_rhel10_doca_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/doca/3.2.2/rhel10/{{ kolla_base_arch }}/{{ stackhpc_repo_rhel10_doca_version }}" | ||
|
Comment on lines
+204
to
+205
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The DOCA version References
|
||
| stackhpc_repo_rhel10_doca_version: "{{ stackhpc_repo_distribution }}" | ||
|
|
||
| ############################################################################### | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| features: | ||
| - | | ||
| Updates to NVIDIA DOCA 3.2.2 LTS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The DOCA version
3.2.2is hardcoded inname,url,distribution_name, andbase_path. This makes future version updates more error-prone as the version needs to be changed in multiple places. For better maintainability, consider parameterizing the version using a variable, similar to how it's done for the RHEL 9 DOCA repository configuration in this file (lines 416-420).References