We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57568b5 commit 3885aefCopy full SHA for 3885aef
.gitignore
@@ -29,3 +29,6 @@ bundle.Dockerfile
29
*~
30
31
.DS_STORE
32
+
33
+#VSCode
34
+.vscode
.vscode/launch.json
@@ -0,0 +1,17 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Debug CodeFlare Operator",
6
+ "type": "go",
7
+ "request": "launch",
8
+ "mode": "auto",
9
+ "program": "${workspaceFolder}/main.go",
10
+ "env": {
11
+ "KUBECONFIG": "</path/to/your/kube/config>",
12
+ "NAMESPACE": "<namespace>",
13
+ },
14
+ "showLog": true
15
16
+ ]
17
+ }
0 commit comments