gobuch/cloud-provider/google-cloud-hello/.vscode/launch.json

23 lines
508 B
JSON
Raw Normal View History

2020-08-21 04:26:40 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Run on Kubernetes",
"type": "cloudcode.kubernetes",
"request": "launch",
"skaffoldConfig": "${workspaceFolder}/skaffold.yaml",
"watch": true,
"cleanUp": true,
"portForward": true,
"imageRegistry": "gcr.io/gobuch-72abe"
},
{
"type": "go",
"request": "launch",
"name": "Launch (local)",
"mode": "auto",
"program": "${workspaceFolder}/cmd/hello-world"
}
]
}