Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 2.6 KB

cloudevents.md

File metadata and controls

48 lines (34 loc) · 2.6 KB

Cloud Events

Table of content

Configuration

Setting Env var Default value Description
cloudevents.address CLOUDEVENTS_ADDRESS CloudEvents consumer http address, if not empty, CloudEvents output is enabled
cloudevents.extensions CLOUDEVENTS_EXTENSIONS Extensions to add in the outbound Event, useful for routing
cloudevents.mutualtls CLOUDEVENTS_MUTUALTLS false Authenticate to the output with TLS, if true, checkcert flag will be ignored (server cert will always be checked)
cloudevents.checkcert CLOUDEVENTS_CHECKCERT true Check if ssl certificate of the output is valid
cloudevents.minimumpriority CLOUDEVENTS_MINIMUMPRIORITY "" (= debug) Minimum priority of event for using this output, order is emergency,alert,critical,error,warning,notice,informational,debug or ""

Note

The Env var values override the settings from yaml file.

Example of config.yaml

cloudevents:
  address: "" # CloudEvents consumer http address, if not empty, CloudEvents output is enabled
  # extensions: # Extensions to add in the outbound Event, useful for routing
  #   key: value
  # mutualtls: false # if true, checkcert flag will be ignored (server cert will always be checked)
  # checkcert: true # check if ssl certificate of the output is valid (default: true)
  # minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default)

Additional info

Note

This output works with KNative.

Screenshots