Skip to content

juliocesarscheidt/kubeless-project

Repository files navigation

Kubeless Project

This project uses Kubeless to run lambda functions inside a Kubernetes cluster.

It also uses Helm to deploy the chart on Kubernetes.

In order to deploy it, the kubeless must be running in the cluster: Kubeless Quick Start

Up and Running

make build
make deploy

This will deploy a function on default namespace, to see the function run:

kubeless function ls -n default

To try out the function, run:

kubeless function call bitcoinfn -n default --data '{"data": "PAYLOAD"}'