From cdc01c56e1f6cd07167e7438c4dfd41c71e8a7b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Wed, 22 Mar 2023 05:14:34 +0100 Subject: [PATCH] chore: add vscode config to debug background controller (#6639) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- .vscode/launch.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6b85d0eee8..6b48cf62c7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -23,6 +23,16 @@ "--kubeconfig=${userHome}/.kube/config", ], }, + { + "name": "Launch Background Controller", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}/cmd/background-controller", + "args": [ + "--kubeconfig=${userHome}/.kube/config", + ], + }, { "name": "Launch CLI", "type": "go",