We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is a Bug Report
There are some mismatched glossary tooltips (mouse over)
Problem: In the page for /reference/glossary/, there are some mismatched glossary tooltips.
For instance, in https://kubernetes.io/docs/reference/glossary/?fundamental=true#term-daemonset, glossary tooltip is supported for the term "Pod". The tooltip for "Pod" shows "A high-level summary of what phase the Pod is in within its lifecycle" which is a short description for the term "Pod lifecycle"
According to https://kubernetes.io/docs/reference/glossary/?all=true#term-pod, the tooltip for "Pod" should show "The smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster".
I think the problem is from a way for matching strings.
website/layouts/shortcodes/glossary_tooltip.html
Line 8 in 0fe73a1
Since this code matches "%s*", "pod" and "pod-lifecycle" could be assumed same string.
Proposed Solution: Modify
Page to Update: https://kubernetes.io/docs/reference/glossary/?all=true
The text was updated successfully, but these errors were encountered:
/kind bug
Sorry, something went wrong.
I am working on this issue.
Successfully merging a pull request may close this issue.
This is a Bug Report
There are some mismatched glossary tooltips (mouse over)
Problem:
In the page for /reference/glossary/, there are some mismatched glossary tooltips.
For instance, in https://kubernetes.io/docs/reference/glossary/?fundamental=true#term-daemonset, glossary tooltip is supported for the term "Pod".
The tooltip for "Pod" shows "A high-level summary of what phase the Pod is in within its lifecycle" which is a short description for the term "Pod lifecycle"
According to https://kubernetes.io/docs/reference/glossary/?all=true#term-pod, the tooltip for "Pod" should show "The smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster".
I think the problem is from a way for matching strings.
website/layouts/shortcodes/glossary_tooltip.html
Line 8 in 0fe73a1
Since this code matches "%s*", "pod" and "pod-lifecycle" could be assumed same string.
Proposed Solution:
Modify
website/layouts/shortcodes/glossary_tooltip.html
Line 8 in 0fe73a1
Page to Update:
https://kubernetes.io/docs/reference/glossary/?all=true
The text was updated successfully, but these errors were encountered: