Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A simple Kubeless YAML configuration to deploy a Python HTTP function.
# kubeless/demo/python-http.yaml
apiVersion: kubeless.io/v1beta1
kind: Function
metadata:
name: hello-python
namespace: default
spec:
runtime: python3.8
handler: handler.main
source: |
def main(event, context):
return "Hello Kubeless!"
events:
hello-http:
type: http
metadata:
path: /hello
method: GETKubeless is a Kubernetes-native serverless framework that allows developers to deploy small, single-purpose functions without managing infrastructure. It leverages Kubernetes resources to handle scaling, routing, and monitoring.
Origin & Creator
Kubeless was created by Bitnami in 2016 as an open-source serverless framework for Kubernetes.
Industrial Note
Kubeless is ideal for teams already using Kubernetes who want to adopt serverless patterns without introducing new infrastructure or cloud dependencies.