Skip to content

Commit

Permalink
Adding pod configuration file with names (#14971)
Browse files Browse the repository at this point in the history
Adding pod configuration file with pod and container name. This explains the usage of names and how it looks like in actual YAML.
  • Loading branch information
rajeshdeshpande02 authored and k8s-ci-robot committed Jun 19, 2019
1 parent efe2d0f commit 5a4b7a3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions content/en/docs/concepts/overview/working-with-objects/names.md
Expand Up @@ -26,6 +26,21 @@ See the [identifiers design doc](https://git.k8s.io/community/contributors/desig

By convention, the names of Kubernetes resources should be up to maximum length of 253 characters and consist of lower case alphanumeric characters, `-`, and `.`, but certain resources have more specific restrictions.

For example, here’s the configuration file with a Pod name as `nginx-demo` and a Container name as `nginx`:

```yaml
apiVersion: v1
kind: Pod
metadata:
name: nginx-demo
spec:
containers:
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
```

## UIDs

{{< glossary_definition term_id="uid" length="all" >}}
Expand Down

0 comments on commit 5a4b7a3

Please sign in to comment.