From ab83e87bfd1abdfaa2b06111cd283d269d91c6d0 Mon Sep 17 00:00:00 2001 From: radhikapc Date: Tue, 5 Dec 2017 14:06:36 -0600 Subject: [PATCH] add a glossary term for Service Account --- _data/glossary/service-account.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 _data/glossary/service-account.yaml diff --git a/_data/glossary/service-account.yaml b/_data/glossary/service-account.yaml new file mode 100644 index 0000000000..ec2df2b38e --- /dev/null +++ b/_data/glossary/service-account.yaml @@ -0,0 +1,10 @@ +id: service-account +name: Service Account +full-link: /docs/tasks/configure-pod-container/configure-service-account/ +tags: +- fundamental +- core-object +short-description: > + A service account provides an identity for processes that run in a Pod {% glossary_tooltip text="Pods" term_id="pod" %}. +long-description: > + When processes inside Pods access the cluster, they are authenticated by the API server as a particular service account, for example, `default`. When you create a Pod, if you do not specify a service account, it is automatically assigned the default service account in the same namespace {% glossary_tooltip text="Namespace" term_id="namespace" %}.