mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
28 lines
627 B
YAML
28 lines
627 B
YAML
# Welcome to Serverless!
|
|
#
|
|
# For full config options, check the kubeless plugin docs:
|
|
# https://github.com/serverless/serverless-kubeless
|
|
#
|
|
# For documentation on kubeless itself:
|
|
# http://kubeless.io
|
|
|
|
# Update the service name below with your own service name
|
|
service: hello-world
|
|
|
|
# Please ensure the serverless-kubeless provider plugin is installed globally.
|
|
# $ npm install -g serverless-kubeless
|
|
#
|
|
# ...before installing project dependencies to register this provider.
|
|
# $ npm install
|
|
|
|
provider:
|
|
name: kubeless
|
|
runtime: python2.7
|
|
|
|
plugins:
|
|
- serverless-kubeless
|
|
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|