Files
website/docs/reference/glossary.md
T
Jessica Yao b22947afc3 [docs][glossary] Add page that lists all standardized k8s terms (#5657)
* Add comprehensive glossary page

Additional Authors:
* Andrew Chen <chenopis@users.noreply.github.com>
* Steve Perry <steveperry-53@users.noreply.github.com>

* incorporate Tim's feedback

* address zach's comments

* address more comments

* add additional crosslinking

* Add platform developer, tweak formatting for disambiguation cases or multiparagraph definitions.
2017-10-12 18:12:38 -05:00

2.5 KiB

approvers, title, noedit, default_active_tag
approvers title noedit default_active_tag
chenopis
abiogenesis-now
Standardized Glossary true fundamental
<script src="/js/glossary.js"></script>

This glossary is intended to be a comprehensive, standardized list of Kubernetes terminology. It includes technical terms that are specific to K8s, as well as more general terms that provide useful context.

Filter terms according to their tags:

.
{% for tag in site.data.canonical-tags %} {% assign tag_info = tag[1] %}
{{ tag_info.description }}
{% endfor %}

{% assign sorted_tags = site.data.canonical-tags | where_exp: "tag", "true" | sort: 'name' %} {% for tag_info in sorted_tags %}

{% assign tag_state_class = "" %}

{% assign fullTagName = tag_info.id | prepend: "tag-" %} {{ tag_info.name }} {% endfor %} Select all Deselect all

Click on the [+] indicators below to get a longer explanation for any particular term.

{% assign glossary_terms = site.data.glossary | where_exp: "term", "term.id != '_example'" | sort: 'name' %}

    {% for term in glossary_terms %}

    {% assign tag_classes = term.tags | join: " tag-" | prepend: "tag-" %}

    {% assign term_visibility_class = "hide" %} {% assign show_count = 0 %} {% assign term_identifier = term.id | prepend: 'term-' %}

  • {{ term.name }}LINK
    {% if term.aka %} Also known as: {{ term.aka | join: ", " }}
    {% endif %} {{ term.short-description | markdownify }} [+]
    {{ term.long-description | markdownify }}
  • {% endfor %}