Kubeless - Error: You should specify a path for the trigger event

Hey guys.

I’m using serverless to deploy functions to my kubeless running on k8s.

I wasn’t able to create the Ingress using YAML.

Here’s my serverless.yml:

service: testserverless2

provider:
  name: kubeless
  runtime: python2.7
  namespace: x
  hostname: x

plugins:
  - serverless-kubeless

functions:
  hello:
    handler: handler.hello
    namespace: x
    labels:
      foo: bar
      test: test
    events:
      - http:
        path: /

My function is being deployed and if I create the ingress manually it works fine.

but I’m getting the following message and the Ingress is not being created automatically:
Error: You should specify a path for the trigger event

I appreciate any help! Thanks!