cmd/config: mark config command group as [Alpha]

This commit is contained in:
Phillip Wittrock
2019-11-25 10:31:33 -08:00
parent 4a65ea8056
commit 7baabf7a97
9 changed files with 34 additions and 34 deletions

View File

@@ -4,9 +4,9 @@
// Code generated by "mdtogo"; DO NOT EDIT.
package commands
var CatShort = `Print Resource Config from a local directory.`
var CatShort = `[Alpha] Print Resource Config from a local directory.`
var CatLong = `
Print Resource Config from a local directory.
[Alpha] Print Resource Config from a local directory.
DIR:
Path to local directory.
@@ -21,9 +21,9 @@ var CatExamples = `
# unwrap Resource config from a directory in an ResourceList
... | kyaml cat`
var CountShort = `Count Resources Config from a local directory.`
var CountShort = `[Alpha] Count Resources Config from a local directory.`
var CountLong = `
Count Resources Config from a local directory.
[Alpha] Count Resources Config from a local directory.
DIR:
Path to local directory.
@@ -32,9 +32,9 @@ var CountExamples = `
# print Resource counts from a directory
kyaml count my-dir/`
var FmtShort = `Format yaml configuration files.`
var FmtShort = `[Alpha] Format yaml configuration files.`
var FmtLong = `
Format yaml configuration files.
[Alpha] Format yaml configuration files.
Fmt will format input by ordering fields and unordered list items in Kubernetes
objects. Inputs may be directories, files or stdin, and their contents must
@@ -72,9 +72,9 @@ var FmtExamples = `
# format kustomize output
kustomize build | kyaml fmt`
var GrepShort = `Search for matching Resources in a directory or from stdin`
var GrepShort = `[Alpha] Search for matching Resources in a directory or from stdin`
var GrepLong = `
Search for matching Resources in a directory or from stdin.
[Alpha] Search for matching Resources in a directory or from stdin.
QUERY:
Query to match expressed as 'path.to.field=value'.
@@ -99,9 +99,9 @@ var GrepExamples = `
# look for Resources matching a specific container image
kyaml grep "spec.template.spec.containers[name=nginx].image=nginx:1\.7\.9" my-dir/ | kyaml tree`
var MergeShort = `Merge Resource configuration files`
var MergeShort = `[Alpha] Merge Resource configuration files`
var MergeLong = `
Merge Resource configuration files
[Alpha] Merge Resource configuration files
Merge reads Kubernetes Resource yaml configuration files from stdin or sources packages and write
the result to stdout or a destination package.
@@ -119,9 +119,9 @@ For information on merge rules, run:
var MergeExamples = `
cat resources_and_patches.yaml | kyaml merge > merged_resources.yaml`
var RunFnsShort = `Apply config functions to Resources.`
var RunFnsShort = `[Alpha] Reoncile config functions to Resources.`
var RunFnsLong = `
Apply config functions to Resources.
[Alpha] Reconcile config functions to Resources.
run-fns sequentially invokes all config functions in the directly, providing Resources
in the directory as input to the first function, and writing the output of the last
@@ -168,9 +168,9 @@ order they appear in the file).
var RunFnsExamples = `
kyaml run-fns example/`
var TreeShort = `Display Resource structure from a directory or stdin.`
var TreeShort = `[Alpha] Display Resource structure from a directory or stdin.`
var TreeLong = `
Display Resource structure from a directory or stdin.
[Alpha] Display Resource structure from a directory or stdin.
kyaml tree may be used to print Resources in a directory or cluster, preserving structure