Kubeless - Quick Start

Pre-requisites

  1. Node.js v6.5.0 or later.
  2. Serverless CLI v1.20 or later. You can run npm install -g serverless to install it.
  3. Install Kubeless & Dependencies(./installation.md).

Create a new service

Create a new service using the NodeJS template, specifying a unique name and an optional path for your service.

# Create a new Serverless Service/Project
$ serverless create --template kubeless-nodejs --path new-project
# Change into the newly created directory
$ cd new-project
# Install npm dependencies
$ npm install

Deploy, test and diagnose your service

  1. Deploy the Service

Use this when you have made changes to your Functions, Events or Resources in serverless.yml or you simply want to deploy all changes within your Service at the same time.

serverless deploy -v
  1. Deploy the Function

Use this to quickly upload and overwrite your function code, allowing you to develop faster.

serverless deploy function -f capitalize
  1. Invoke the Function

Invokes the Function and returns results.

$ serverless invoke --function capitalize --data '"WELCOME TO KUBELESS!"' -l
# results
"Welcome To Kubeless!"
  1. Fetch the Function Logs

Open up a separate tab in your console and stream all logs for a specific Function using this command.

serverless logs -f capitalize -t

Cleanup

If at any point, you no longer need your service, you can run the following command to remove the Functions, Events and Resources that were created.

serverless remove
Edit this page

Kubeless - Quick Start

Pre-requisites

  1. Node.js v6.5.0 or later.
  2. Serverless CLI v1.20 or later. You can run npm install -g serverless to install it.
  3. Install Kubeless & Dependencies(./installation.md).

Create a new service

Create a new service using the NodeJS template, specifying a unique name and an optional path for your service.

# Create a new Serverless Service/Project
$ serverless create --template kubeless-nodejs --path new-project
# Change into the newly created directory
$ cd new-project
# Install npm dependencies
$ npm install

Deploy, test and diagnose your service

  1. Deploy the Service

Use this when you have made changes to your Functions, Events or Resources in serverless.yml or you simply want to deploy all changes within your Service at the same time.

serverless deploy -v
  1. Deploy the Function

Use this to quickly upload and overwrite your function code, allowing you to develop faster.

serverless deploy function -f capitalize
  1. Invoke the Function

Invokes the Function and returns results.

$ serverless invoke --function capitalize --data '"WELCOME TO KUBELESS!"' -l
# results
"Welcome To Kubeless!"
  1. Fetch the Function Logs

Open up a separate tab in your console and stream all logs for a specific Function using this command.

serverless logs -f capitalize -t

Cleanup

If at any point, you no longer need your service, you can run the following command to remove the Functions, Events and Resources that were created.

serverless remove