-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
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
Name and UID glossary terms #6606
Conversation
Deploy preview for kubernetes-io-master-staging ready! Built with commit 647ab49 https://deploy-preview-6606--kubernetes-io-master-staging.netlify.com |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor fixes. Good work! ✨
_data/glossary/name.yaml
Outdated
tags: | ||
- fundamental | ||
short-description: > | ||
A client-provided string used to refer to an object in a resource URL, such as `/api/v1/pods/some-name`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
```A client-provided string that refers to an object in a resource URL, such as /api/v1/pods/some-name
.
_data/glossary/name.yaml
Outdated
short-description: > | ||
A client-provided string used to refer to an object in a resource URL, such as `/api/v1/pods/some-name`. | ||
long-description: > | ||
Only one object of a given kind can have a given name at a time (i.e., they are spatially unique). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only one object of a given kind can have a given name at a time.
_data/glossary/name.yaml
Outdated
A client-provided string used to refer to an object in a resource URL, such as `/api/v1/pods/some-name`. | ||
long-description: > | ||
Only one object of a given kind can have a given name at a time (i.e., they are spatially unique). | ||
But if you delete the object, you can make a new object with the same name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
However, if you delete the object, you can make a new object with the same name.
_data/glossary/uid.yaml
Outdated
short-description: > | ||
A Kubernetes systems-generated string to uniquely identify objects. | ||
long-description: > | ||
Every object created over the whole lifetime of a Kubernetes cluster has a distinct UID (i.e., they are spatially and temporally unique). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Every object created over the whole lifetime of a Kubernetes cluster has a distinct UID.
Updated! |
Extract glossary terms from page.
Name
is part of #5993.This change is