Skip to content

Commit b30d270

Browse files
authored
Merge pull request #89161 from mburke5678/nodes-garbage-collect-fix
OCPBUGS50980 Need to make changes in the garbage collection documentation
2 parents 53bf22e + c82d93e commit b30d270

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/nodes-nodes-garbage-collection-configuring.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ spec:
117117
For `evictionHard` you must specify all of these parameters. If you do not specify all parameters, only the specified parameters are applied and the garbage collection will not function properly.
118118
<7> For container garbage collection: The duration to wait before transitioning out of an eviction pressure condition. Setting the `evictionPressureTransitionPeriod` parameter to `0` configures the default value of 5 minutes.
119119
<8> For image garbage collection: The minimum age for an unused image before the image is removed by garbage collection.
120-
<9> For image garbage collection: The percent of disk usage (expressed as an integer) that triggers image garbage collection.
121-
<10> For image garbage collection: The percent of disk usage (expressed as an integer) that image garbage collection attempts to free.
120+
<9> For image garbage collection: Image garbage collection is triggered at the specified percent of disk usage (expressed as an integer). This value must be greater than the `imageGCLowThresholdPercent` value.
121+
<10> For image garbage collection: Image garbage collection attempts to free resources to the specified percent of disk usage (expressed as an integer). This value must be less than the `imageGCHighThresholdPercent` value.
122122

123123
. Run the following command to create the CR:
124124
+

modules/nodes-nodes-garbage-collection-images.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ a custom resource.
3434

3535
|`imageGCHighThresholdPercent`
3636
|The percent of disk usage, expressed as an integer, which triggers image
37-
garbage collection. The default is *85*.
37+
garbage collection. The default is *85*. This value must be greater than the `imageGCLowThresholdPercent` value.
3838

3939
|`imageGCLowThresholdPercent`
4040
|The percent of disk usage, expressed as an integer, to which image garbage
41-
collection attempts to free. The default is *80*.
41+
collection attempts to free. The default is *80*. This value must be less than the `imageGCHighThresholdPercent` value.
4242
|===
4343

4444
Two lists of images are retrieved in each garbage collector run:

0 commit comments

Comments
 (0)