Kubernetes Manifest Metadata: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 9: Line 9:
=Overview=
=Overview=


The manifest metadata section is where things like the resource name and labels are specified.
The manifest metadata section is where things like the resource name and [[Kubernetes Labels and Annotations#Label|labels]] are specified.


=Elements=
=Elements=

Revision as of 00:55, 7 September 2019

External

Internal

Overview

The manifest metadata section is where things like the resource name and labels are specified.

Elements

name

The name field specifies the name of the resource. The presence of this field is in general mandatory when creating the resource specified by this manifest, thought in some cases, some resources may allow a client to request the generation of an appropriate name automatically. Once a resource is create, the name cannot be updated.

namespace

The namespace field specifies the Kubernetes namespace the corresponding object belongs to. When the object is created, it will be created in the specified namespace - which has to exist at the time of the creation. If no namespace field is specified, the default namespace is implied. A missing namespace field is equivalent with a namespace field with the value "default".