mirror of https://github.com/knative/client.git
Add reference to plugin in README.md (#363)
* Add reference to plugin in README.md Working on various plugins docs. This is first of three PRs. * typo and clarification * fix links
This commit is contained in:
parent
25c726453e
commit
e36089f260
|
|
@ -76,13 +76,21 @@ Examples:
|
|||
kn revision list --service srvc # CHECK this since current command does not have --service flag
|
||||
```
|
||||
|
||||
### Plugins
|
||||
|
||||
Kn supports plugins, which allow you to extend the functionality of your Kn installation with custom commands as well as shared commands that are not part of the core distribution of Kn.
|
||||
|
||||
Plugins follow a similar architecture to [kubectl plugins](https://kubernetes.io/docs/tasks/extend-kubectl/kubectl-plugins/) with some small differences. One key difference is that Kn plugins can either live in your `PATH` or in a chosen and specified directory. [Kn plugins](plugins.md) shows how to install and create new plugins as well as giving some examples and best practices.
|
||||
|
||||
To see what plugins are installed on your machine, you can use the [`plugin`](cmd/kn_plugin.md) command group's [`list`](cmd/kn_plugin_list.md) command.
|
||||
|
||||
### Utilities
|
||||
|
||||
These are commands that provide some useful information to the user.
|
||||
|
||||
* The `kn help` command displays a list of the commands with helpful information.
|
||||
* The [`kn version`](cmd/kn_version.md) command will display the current version of the `kn` build including date and Git commit revision.
|
||||
* The [`kn completion`](cmd/kn_completion.md) command will output a BASH completion script for `kn` to allow command completions with tabs.
|
||||
* The `kn completion` command will output a BASH completion script for `kn` to allow command completions with tabs.
|
||||
|
||||
### Common Flags
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue