mesheryctl filter import

Import a WASM filter

Synopsis

Import a WASM filter from a URI (http/s) or local filesystem path

mesheryctl filter import [URI] [flags]

Examples

Import a filter file from local filesystem

mesheryctl filter import /path/to/filter.wasm

Import a filter file from a remote URI

mesheryctl filter import https://example.com/myfilter.wasm

Add WASM configuration If the string is a valid file in the filesystem, the file is read and passed as a string. Otherwise, the string is passed as is. Use quotes if the string contains spaces

mesheryctl filter import /path/to/filter.wasm --wasm-config [filepath|string]

Specify the name of the filter to be imported. Use quotes if the name contains spaces

mesheryctl filter import /path/to/filter.wasm --name [string]

Options

-h, --help help for import -n, --name string (optional) filter name -w, --wasm-config string (optional) WASM configuration filepath/string

Options inherited from parent commands

--config string path to config file (default "/home/runner/.meshery/config.yaml") -t, --token string Path to token file default from current context -v, --verbose verbose output

See Also

Go back to command reference index, if you want to add content manually to the CLI documentation, please refer to the instruction for guidance.