From bf1c00ab34cc5b43bbe4bf15ca7b6d0ad360b939 Mon Sep 17 00:00:00 2001 From: James Liu Date: Wed, 30 Oct 2024 10:55:00 +1100 Subject: [PATCH] glossary: Fix PDB tooltip text The tooltip text for the Pod Disruption Budget term renders incorrectly due to the templating of the "Pod" term within the `short_description`. This can be observed by hovering the cursor over the "PodDisruptionBudget" term on the following page: https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/ Fix the issue by replacing the templated text with the literal word "Pod". Also, slightly modify the wording to align with the full description on the following page: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#pod-disruption-budgets --- content/en/docs/reference/glossary/pod-disruption-budget.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/docs/reference/glossary/pod-disruption-budget.md b/content/en/docs/reference/glossary/pod-disruption-budget.md index 7ee55d45a431b..7564b6f4c9c80 100644 --- a/content/en/docs/reference/glossary/pod-disruption-budget.md +++ b/content/en/docs/reference/glossary/pod-disruption-budget.md @@ -4,7 +4,7 @@ title: Pod Disruption Budget full-link: /docs/concepts/workloads/pods/disruptions/ date: 2019-02-12 short_description: > - An object that limits the number of {{< glossary_tooltip text="Pods" term_id="pod" >}} of a replicated application, that are down simultaneously from voluntary disruptions. + An object that limits the number of Pods of a replicated application that are down simultaneously from voluntary disruptions. aka: - PDB @@ -17,8 +17,8 @@ tags: A [Pod Disruption Budget](/docs/concepts/workloads/pods/disruptions/) allows an application owner to create an object for a replicated application, that ensures - a certain number or percentage of Pods with an assigned label will not be voluntarily - evicted at any point in time. + a certain number or percentage of {{< glossary_tooltip text="Pods" term_id="pod" >}} + with an assigned label will not be voluntarily evicted at any point in time.