Skip to content

Commit

Permalink
add_16
Browse files Browse the repository at this point in the history
  • Loading branch information
Cortey committed Oct 19, 2022
1 parent 6ea7760 commit 1c3bbf6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Expand Up @@ -6,7 +6,7 @@ Pick the programming language for the Function and decide where you want to keep

## Runtimes

Functions support multiple languages by using the underlying execution environments known as runtimes. Currently, you can create both Node.js (14) and Python (3.9) Functions in Kyma.
Functions support multiple languages by using the underlying execution environments known as runtimes. Currently, you can create both Node.js (14 & 16) and Python (3.9) Functions in Kyma.

>**TIP:** See [sample Functions](../../../05-technical-reference/svls-01-sample-functions.md) for each available runtime.
Expand Down
Expand Up @@ -10,6 +10,6 @@ To start developing your first Functions, you need:
- [**kubectl**](https://kubernetes.io/docs/reference/kubectl/kubectl/), the Kubernetes command-line tool, for running commands against clusters
- Development environment of your choice:
- **Kyma CLI** to easily initiate inline Functions or Git Functions locally, run, test, and later apply them on the clusters
- **Node.js** (v14) or **Python** (v3.9)
- **Node.js** (v14 or v16) or **Python** (v3.9)
- **IDE** as the source code editor
- **Kyma Dashboard** to manage Functions and related workloads through the graphical user interface
2 changes: 1 addition & 1 deletion docs/05-technical-reference/svls-04-git-source-type.md
Expand Up @@ -2,7 +2,7 @@
title: Git source type
---

Depending on a runtime you use to build your Function (Node.js 14, or Python 3.9), your Git repository must contain at least a directory with these files:
Depending on a runtime you use to build your Function (Node.js 14, Node.js 16, or Python 3.9), your Git repository must contain at least a directory with these files:

- `handler.js` or `handler.py` with Function's code
- `package.json` or `requirements.txt` with Function's dependencies
Expand Down
4 changes: 2 additions & 2 deletions docs/05-technical-reference/svls-08-function-specification.md
@@ -1,8 +1,8 @@
---
z---
title: Function's specification
---

Serverless in Kyma allows you to create Functions in both Node.js (v14) and Python (v3.9). Although the Function's interface is unified, its specification differs depending on the runtime used to run the Function.
Serverless in Kyma allows you to create Functions in both Node.js (v14 & v16) and Python (v3.9). Although the Function's interface is unified, its specification differs depending on the runtime used to run the Function.

## Signature

Expand Down

0 comments on commit 1c3bbf6

Please sign in to comment.