- Expose a workload
- Expose and secure a workload
- Cannot connect to a service exposed by an APIRule
- External DNS management
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
- In VSC, navigate to the location of the file with the Function definition.
- Create the
.vscode
directory.
In the
.vscode
directory, create thelaunch.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}]}Run the Function with the
--debug
flag.Click to copykyma run function --debug