Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 503 Bytes

triggers.md

File metadata and controls

17 lines (11 loc) · 503 Bytes

Trigger

A Trigger represents an entry point for function invocations. Each type of Trigger requires specific configuration. They should be defined within the func.yaml file, as specified in function file rules.

Types

http

Configures a http endpoint for function invocation.

name: triggerOne
type: http
source: /trigger-path

This will cause the system to route requests arriving at the fn service at /trigger-path to the function specified in the func.yaml file.