diff --git a/_data/glossary/kubelet.yaml b/_data/glossary/kubelet.yaml new file mode 100644 index 0000000000..4728339907 --- /dev/null +++ b/_data/glossary/kubelet.yaml @@ -0,0 +1,10 @@ +id: kubelet +name: Kubelet +full-link: docs/reference/generated/kubelet +tags: +- fundamental +- core-object +short-description: > + An agent that runs on each node in the cluster. It makes sure that containers are running in a pod. +long-description: > + The kubelet takes a set of PodSpecs that are provided through various mechanisms and ensures that the containers described in those PodSpecs are running and healthy. The kubelet doesn’t manage containers which were not created by Kubernetes. diff --git a/_data/glossary/resource-quota.yaml b/_data/glossary/resource-quota.yaml new file mode 100644 index 0000000000..b8e8adf4f8 --- /dev/null +++ b/_data/glossary/resource-quota.yaml @@ -0,0 +1,11 @@ +id: resource-quota +name: Resource Quotas +full-link: /docs/concepts/policy/resource-quotas/ +tags: +- fundamental +- operation +- architecture +short-description: > + Provides constraints that limit aggregate resource consumption per {% glossary_tooltip term_id="namespace" %}. +long-description: > + Limits the quantity of objects that can be created in a namespace by type, as well as the total amount of compute resources that may be consumed by resources in that project. diff --git a/_data/glossary/secret.yml b/_data/glossary/secret.yml new file mode 100644 index 0000000000..1565df28f8 --- /dev/null +++ b/_data/glossary/secret.yml @@ -0,0 +1,15 @@ +id: secret +name: Secret +full-link: /docs/concepts/configuration/secret/ +related: +- pods +- volume +tags: +- core-object +- security +short-description: > + Stores sensitive information, such as passwords, OAuth tokens, and ssh keys. +long-description: > + Allows for more control over how sensitive information is used and reduces the risk of accidental exposure, including [encryption](https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/#ensure-all-secrets-are-encrypted) at rest. + A {% glossary_tooltip text="Pod" term_id="pod" %} references the secret as a file in a volume mount or by the kubelet pulling images for a pod. + Secrets are great for confidential data and [ConfigMaps](https://kubernetes.io/docs/tasks/configure-pod-container/configmap/) for non-confidential data.