This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
forked from serverless/serverless
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add also this command to kubeless doc
- Loading branch information
Showing
12 changed files
with
142 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!-- | ||
title: Serverless Framework Commands - Kubeless - Plugin Install | ||
menuText: Plugin Install | ||
menuOrder: 9 | ||
description: Install a Serverless plugin | ||
layout: Doc | ||
--> | ||
|
||
<!-- DOCS-SITE-LINK:START automatically generated --> | ||
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/kubeless/cli-reference/plugin-install) | ||
<!-- DOCS-SITE-LINK:END --> | ||
|
||
# Plugin Install | ||
|
||
Install a Serverless plugin and add it to the services `plugins` array. | ||
|
||
**Note:** You might want to change the order of the plugin in the services `plugins` array. | ||
|
||
```bash | ||
serverless plugin install --name pluginName | ||
``` | ||
|
||
## Options | ||
- `--name` or `-n` The plugins name. **Required**. | ||
|
||
## Provided lifecycle events | ||
- `plugin:install:install` | ||
|
||
## Examples | ||
|
||
### Install the `serverless-webpack` plugin | ||
|
||
```bash | ||
serverless plugin install --name serverless-webpack | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- | ||
title: Serverless Framework Commands - Kubeless - Plugin List | ||
menuText: Plugin List | ||
menuOrder: 7 | ||
description: List all available Serverless plugins | ||
layout: Doc | ||
--> | ||
|
||
<!-- DOCS-SITE-LINK:START automatically generated --> | ||
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/kubeless/cli-reference/plugin-list) | ||
<!-- DOCS-SITE-LINK:END --> | ||
|
||
# Plugin List | ||
|
||
List all available plugins on the terminal. Connected to the [Serverless plugin registry](https://github.com/serverless/plugins). | ||
|
||
```bash | ||
serverless plugin list | ||
``` | ||
|
||
## Options | ||
- *None* | ||
|
||
## Provided lifecycle events | ||
- `plugin:list:list` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- | ||
title: Serverless Framework Commands - Kubeless - Plugin Search | ||
menuText: Plugin Search | ||
menuOrder: 8 | ||
description: Search through all available Serverless plugins | ||
layout: Doc | ||
--> | ||
|
||
<!-- DOCS-SITE-LINK:START automatically generated --> | ||
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/kubeless/cli-reference/plugin-search) | ||
<!-- DOCS-SITE-LINK:END --> | ||
|
||
# Plugin Search | ||
|
||
Search for a specific plugin based on a search query. Connected to the [Serverless plugin registry](https://github.com/serverless/plugins). | ||
|
||
```bash | ||
serverless plugin search --query query | ||
``` | ||
|
||
## Options | ||
- `--query` or `-q` The query you want to use for your search. **Required**. | ||
|
||
## Provided lifecycle events | ||
- `plugin:search:search` | ||
|
||
## Examples | ||
|
||
### Search for a `sqs` plugin | ||
|
||
```bash | ||
serverless plugin search --query sqs | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- | ||
title: Serverless Framework Commands - Kubeless - Plugin Uninstall | ||
menuText: Plugin Uninstall | ||
menuOrder: 10 | ||
description: Uninstall a Serverless plugin | ||
layout: Doc | ||
--> | ||
|
||
<!-- DOCS-SITE-LINK:START automatically generated --> | ||
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/kubeless/cli-reference/plugin-uninstall) | ||
<!-- DOCS-SITE-LINK:END --> | ||
|
||
# Plugin Uninstall | ||
|
||
Uninstall a Serverless plugin and remove it from the services `plugins` array. | ||
|
||
```bash | ||
serverless plugin uninstall --name pluginName | ||
``` | ||
|
||
## Options | ||
- `--name` or `-n` The plugins name. **Required**. | ||
|
||
## Provided lifecycle events | ||
- `plugin:uninstall:uninstall` | ||
|
||
## Examples | ||
|
||
### Remove the `serverless-webpack` plugin | ||
|
||
```bash | ||
serverless plugin uninstall --name serverless-webpack | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters