This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Adding Hugepages role parameter" into stable/wallaby
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
23 changes: 23 additions & 0 deletions
23
releasenotes/notes/tripleo-kernel-hugepages-424c19a4b1579af8.yaml
This file contains 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,23 @@ | ||
--- | ||
features: | ||
- | | ||
Adding Hugepages role parameter | ||
Hugepages management was always a manual step done by operators via the | ||
TripleO parameter ``KernelArgs``. This is error prone and causing confusion. | ||
The new ``Hugepages`` parameter allow operators to define hugepages as | ||
dictionnary, making it easier to read and follow. | ||
To prevent unvolontary changes, there's multiple validations before | ||
applying a change: | ||
- We convert the current running configurations to an actual dictionnary | ||
that we validate the new format against | ||
- If no change is necessary, even though the format might not be the same, | ||
there's no kernel_args update. | ||
- By default, we don't remove hugepages in places except when operators | ||
specifically set the ``ReconfigureHugepages`` to true. | ||
This change is also opening the door to more automations and automatic | ||
tuning. |