
This commit adds get-manifests and set-manifests option for airshipctl config. get-manifests prints all the manifests in current config file. set-manifests helps in setting/creating new manifests in current config file. Closes: #115 Change-Id: I7c677ed491a1d456744d27bf105f21e2b3c4e6aa Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
44 lines
913 B
Markdown
44 lines
913 B
Markdown
## airshipctl config get-manifest
|
|
|
|
Get a manifest information from the airshipctl config
|
|
|
|
### Synopsis
|
|
|
|
Display a specific manifest information, or all defined manifests if no name is provided.
|
|
|
|
|
|
```
|
|
airshipctl config get-manifest NAME [flags]
|
|
```
|
|
|
|
### Examples
|
|
|
|
```
|
|
|
|
# List all the manifests airshipctl knows about
|
|
airshipctl config get-manifests
|
|
|
|
# Display a specific manifest
|
|
airshipctl config get-manifest e2e
|
|
|
|
```
|
|
|
|
### Options
|
|
|
|
```
|
|
-h, --help help for get-manifest
|
|
```
|
|
|
|
### Options inherited from parent commands
|
|
|
|
```
|
|
--airshipconf string Path to file for airshipctl configuration. (default "$HOME/.airship/config")
|
|
--debug enable verbose output
|
|
--kubeconfig string Path to kubeconfig associated with airshipctl configuration. (default "$HOME/.airship/kubeconfig")
|
|
```
|
|
|
|
### SEE ALSO
|
|
|
|
* [airshipctl config](airshipctl_config.md) - Manage the airshipctl config file
|
|
|