---
approvers:
- chenopis
- abiogenesis-now
title: Standardized Glossary
noedit: true
default_active_tag: fundamental
---
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-' %}
{% if term.aka %}
Also known as:
{{ term.aka | join: ", " }}
{% endif %}
{{ term.short-description | markdownify }} [+]
{{ term.long-description | markdownify }}
{% endfor %}