Debug a Function

This tutorial shows how to use an external IDE to debug a Function in Kyma CLI.

Steps

Follows these steps:

  • Visual Studio Code (Node.js)
  • Visual Studio Code (Python)
  • GoLand
  1. In VSC, navigate to the location of the file with the Function definition.
  1. Create the .vscode directory.
  1. In the .vscode directory, create the launch.json file with this content:

    Click to copy
    {
    "version": "0.2.0",
    "configurations": [
    {
    "name": "attach",
    "type": "node",
    "request": "attach",
    "port": 9229,
    "address": "localhost",
    "localRoot": "${workspaceFolder}/kubeless",
    "remoteRoot": "/kubeless",
    "restart": true,
    "protocol": "inspector",
    "timeout": 1000
    }
    ]
    }
  2. Run the Function with the --debug flag.

    Click to copy
    kyma run function --debug