forked from GoogleCloudPlatform/cloud-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
29 lines (28 loc) · 896 Bytes
/
Copy pathlaunch.json
File metadata and controls
29 lines (28 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// launch.json contains information needed for the debugger to attach to processes
// See https://code.visualstudio.com/Docs/editor/debugging#_launch-configurations
// for documentation about how to create and manage configurations
{
"version": "0.2.0",
"configurations": [
{
"name": "Run on Kubernetes",
"type": "cloudcode.kubernetes",
"request": "launch",
"skaffoldConfig": "${workspaceFolder}/skaffold.yaml",
"profile": "dockerfile",
"watch": true,
"cleanUp": true,
"portForward": true
},
{
"name": "Run on Kubernetes - Cloud Build",
"type": "cloudcode.kubernetes",
"request": "launch",
"skaffoldConfig": "${workspaceFolder}/skaffold.yaml",
"profile": "cloudbuild",
"watch": true,
"cleanUp": true,
"portForward": true
}
]
}