mirror of https://github.com/knative/client.git
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
## kn trigger update
|
|
|
|
Update a trigger
|
|
|
|
### Synopsis
|
|
|
|
Update a trigger
|
|
|
|
```
|
|
kn trigger update NAME --filter KEY=VALUE --sink SINK [flags]
|
|
```
|
|
|
|
### Examples
|
|
|
|
```
|
|
|
|
# Update the filter which key is 'type' to value 'knative.dev.bar' in a trigger 'mytrigger'
|
|
kn trigger update mytrigger --filter type=knative.dev.bar
|
|
|
|
# Remove the filter which key is 'type' from a trigger 'mytrigger'
|
|
kn trigger update mytrigger --filter type-
|
|
|
|
# Update the sink of a trigger 'mytrigger' to 'svc:new-service'
|
|
kn trigger update mytrigger --sink svc:new-service
|
|
|
|
```
|
|
|
|
### Options
|
|
|
|
```
|
|
--broker string Name of the Broker which the trigger associates with. (default "default")
|
|
--filter strings Key-value pair for exact CloudEvent attribute matching against incoming events, e.g type=dev.knative.foo
|
|
-h, --help help for update
|
|
-n, --namespace string Specify the namespace to operate in.
|
|
-s, --sink string Addressable sink for events
|
|
```
|
|
|
|
### Options inherited from parent commands
|
|
|
|
```
|
|
--config string kn config file (default is ~/.config/kn/config.yaml)
|
|
--kubeconfig string kubectl config file (default is ~/.kube/config)
|
|
--log-http log http traffic
|
|
```
|
|
|
|
### SEE ALSO
|
|
|
|
* [kn trigger](kn_trigger.md) - Trigger command group
|
|
|