Skip to content

Commit

Permalink
without s
Browse files Browse the repository at this point in the history
Signed-off-by: Yi Rae Kim <[email protected]>
  • Loading branch information
yiraeChristineKim committed Nov 14, 2023
1 parent d0ce50f commit 7e7e25a
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
// 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": "Run gatekeepr",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [
"--leader-elect=false",
],
"env": {
"RELATED_IMAGE_GATEKEEPER": "openpolicyagent/gatekeeper:v3.11.1",
"GATEKEEPER_TARGET_NAMESPACE": "gatekeeper-system"
}
},
{
"name": "e2e gatekeeper",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceFolder}/test/e2e/e2e_test.go",
"showLog": true,
"args": [
"--ginkgo.vv",
"--ginkgo.trace",
"-namespace=gatekeeper-system",
],
"env": {
// "RELATED_IMAGE_GATEKEEPER": "openpolicyagent/gatekeeper:v3.11.1",
// "GATEKEEPER_TARGET_NAMESPACE": "gatekeeper-system",
"USE_EXISTING_CLUSTER": "true"
}
},
]
}
//controllers/configurationpolicy_controller_suite_test.go

0 comments on commit 7e7e25a

Please sign in to comment.