Skip to content
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

Missing "Manifest" from glossary k8s.io/docs/reference/glossary/ #13546 #16193

Merged
merged 1 commit into from
Oct 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ With the above commands, we first create resources under `examples/application/n

If you happen to organize your resources across several subdirectories within a particular directory, you can recursively perform the operations on the subdirectories also, by specifying `--recursive` or `-R` alongside the `--filename,-f` flag.

For instance, assume there is a directory `project/k8s/development` that holds all of the manifests needed for the development environment, organized by resource type:
For instance, assume there is a directory `project/k8s/development` that holds all of the {{< glossary_tooltip text="manifests" term_id="manifest" >}} needed for the development environment, organized by resource type:

```
project/k8s/development
Expand Down
15 changes: 15 additions & 0 deletions content/en/docs/reference/glossary/manifest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Manifest
id: manifest
date: 2019-06-28
short_description: >
A serialized specification of one or more Kubernetes API objects.

aka:
tags:
- fundamental
---
Specification of a Kubernetes API object in JSON or YAML format.

<!--more-->
A manifest specifies the desired state of an object that Kubernetes will maintain when you apply the manifest. Each configuration file can contain multiple manifests.