Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ serverless install -u https://github.com/serverless/examples/tree/master/folder-
| [Google Node Simple Http Endpoint](https://github.com/serverless/examples/tree/master/google-node-simple-http-endpoint) <br/> An example of making http endpoints with the Google Cloud Functions Serverless Framework plugin. | nodeJS |
| [Gcp Node Typescript Simple](https://github.com/serverless/examples/tree/master/google-node-typescript-http-endpoint) <br/> Simple HTTP example for GCP functions by Serverless framework with Typescript | nodeJS |
| [Google Python Simple Http Endpoint](https://github.com/serverless/examples/tree/master/google-python-simple-http-endpoint) <br/> Example demonstrates how to setup a simple HTTP GET endpoint with python | python |
| [Kubeless Python Simple](https://github.com/serverless/examples/tree/master/kubeless-python-schedule) <br/> This example demonstrates how to setup a simple Python function with Kubeless | python |
| [Kubeless Python Simple](https://github.com/serverless/examples/tree/master/kubeless-python-simple) <br/> This example demonstrates how to setup a simple Python function with Kubeless | python |
| [Kubeless Python Simple Function](https://github.com/serverless/examples/tree/master/kubeless-python-simple-function) <br/> This example demonstrates how to setup a simple Python function with Kubeless | python |
| [Kubeless Python Simple Scheduled Function](https://github.com/serverless/examples/tree/master/kubeless-python-simple-scheduled-function) <br/> This example demonstrates how to setup a simple Python function with Kubeless | python |
| [Openwhisk Go Simple](https://github.com/serverless/examples/tree/master/openwhisk-go-simple) <br/> Example demonstrates how to setup a simple Go function with OpenWhisk. | nodeJS |
| [Openwhisk Node And Docker Chaining Functions](https://github.com/serverless/examples/tree/master/openwhisk-node-and-docker-chaining-functions) <br/> Example of chaining function calls using sequences and docker images. | nodeJS |
| [Openwhisk Node Chaining Functions](https://github.com/serverless/examples/tree/master/openwhisk-node-chaining-functions) <br/> Example of chaining function calls using sequences and the sdk. | nodeJS |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
title: 'Kubeless Serverless Simple example in Python'
description: 'This example demonstrates a simple example in Python.'
title: 'Kubeless Serverless Simple function example in Python'
description: 'This example demonstrates a simple function example in Python.'
layout: Doc
framework: v1
platform: Kubeless
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "kubeless-python-simple",
"name": "kubeless-python-simple-function",
"version": "0.0.1",
"description": "This example demonstrates how to setup a simple Python function with Kubeless",
"dependencies": {
Expand All @@ -10,4 +10,4 @@
"main": "handler.py",
"autor": "Bitnami",
"license": "ASL"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
title: 'Kubeless Serverless Simple scheduled example in Python'
description: 'This example demonstrates a simple example in Python for a scheduled function.'
title: 'Kubeless Serverless Simple scheduled function example in Python'
description: 'This example demonstrates a simple sexample in Python for a scheduled function.'
layout: Doc
framework: v1
platform: Kubeless
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "kubeless-python-simple",
"name": "kubeless-python-simple-scheduled-function",
"version": "0.0.1",
"description": "This example demonstrates how to setup a simple Python function with Kubeless",
"dependencies": {
Expand All @@ -10,4 +10,4 @@
"main": "handler.py",
"autor": "Bitnami",
"license": "ASL"
}
}