client/docs/cmd/kn_source_apiserver_create.md

1.8 KiB

kn source apiserver create

Create an ApiServerSource, which watches for Kubernetes events and forwards them to a sink

Synopsis

Create an ApiServerSource, which watches for Kubernetes events and forwards them to a sink

kn source apiserver create NAME --resource RESOURCE --service-account ACCOUNTNAME --sink SINK --mode MODE [flags]

Examples

  
  # Create an ApiServerSource 'k8sevents' which consumes Kubernetes events and sends message to service 'mysvc' as a cloudevent
  kn source apiserver create k8sevents --resource Event --service-account myaccountname --sink svc:mysvc

Options

  -h, --help                     help for create
      --mode string              The mode the receive adapter controller runs under:, 
                                 "Ref" sends only the reference to the resource, 
                                 "Resource" send the full resource. (default "Ref")
  -n, --namespace string         Specify the namespace to operate in.
      --resource strings         Comma seperate Kind:APIVersion:isController list, e.g. Event:v1:true.
                                 "APIVersion" and "isControler" can be omitted.
                                 "APIVersion" is "v1" by default, "isController" is "false" by default. 
      --service-account string   Name of the service account to use to run this source
  -s, --sink string              Addressable sink for events

Options inherited from parent commands

      --config string       kn config file (default is $HOME/.kn/config.yaml)
      --kubeconfig string   kubectl config file (default is $HOME/.kube/config)
      --log-http            log http traffic

SEE ALSO