Revision de9a02a3c211b746f716274f649e5b10f0ae6596 authored by André Martins on 15 June 2024, 19:26:32 UTC, committed by André Martins on 16 June 2024, 08:39:19 UTC
To avoid unwanted breakages from renovate, we should also pin renovate
version and let it be updated on a weekly basis like the other
dependencies.

Signed-off-by: André Martins <andre@cilium.io>
1 parent 664cffe
Raw File
launch.json
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
		{
			"name": "Launch test for current package",
			"type": "go",
			"request": "launch",
			"mode": "test",
			"program": "${relativeFileDirname}",
		},
		{
			"name": "Attach to kind-control-plane-1",
			"type": "go",
			"request": "attach",
			"mode": "remote",
			"port":23401,
			"host":"127.0.0.1",
			"showLog": true,
			"trace": "log",
			"logOutput": "rpc",
			"substitutePath": [{"from": "${workspaceFolder}", "to": "/go/src/github.com/cilium/cilium"}],
		},
		{
			"name": "Attach to kind-worker-1",
			"type": "go",
			"request": "attach",
			"mode": "remote",
			"port":23411,
			"host":"127.0.0.1",
			"showLog": true,
			"trace": "log",
			"logOutput": "rpc",
			"substitutePath": [{"from": "${workspaceFolder}", "to": "/go/src/github.com/cilium/cilium"}],
		},
		{
			"name": "Attach to kind-worker-2",
			"type": "go",
			"request": "attach",
			"mode": "remote",
			"port":23412,
			"host":"127.0.0.1",
			"showLog": true,
			"trace": "log",
			"logOutput": "rpc",
			"substitutePath": [{"from": "${workspaceFolder}", "to": "/go/src/github.com/cilium/cilium"}],
		},
		{
			"name": "Attach to Cilium Operator",
			"type": "go",
			"request": "attach",
			"mode": "remote",
			"port":23511,
			"host":"127.0.0.1",
			"showLog": true,
			"trace": "log",
			"logOutput": "rpc",
			"substitutePath": [{"from": "${workspaceFolder}", "to": "/go/src/github.com/cilium/cilium"}],
		}
	]
}
back to top