-
Notifications
You must be signed in to change notification settings - Fork 82
VSCode Debugging launch template. e2e accept environment flags. #639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
|
||
# Attatching IDE Debuggers to project. | ||
|
||
## VSCode | ||
Create `.vscode/launch.json` file with following content | ||
|
||
```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": "Debug E2E Test", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "test", | ||
"program": "${workspaceRoot}/tests/e2e/e2e_suite_test.go", | ||
"env": { | ||
// "KUBECONFIG": "/path/to/.kube/config", | ||
"KUBERNETES_MASTER": "http://localhost:8080", | ||
// modifying values from test-e2e flags | ||
"E2E_USE_ENV_FLAGS": "true", | ||
"VELERO_NAMESPACE": "openshift-adp", | ||
"SETTINGS": "${workspaceRoot}/.vscode/default_settings.json", | ||
"CLOUD_CREDENTIALS": "", | ||
"VELERO_INSTANCE_NAME": "", | ||
"CREDS_SECRET_REF": "", | ||
"PROVIDER": "", | ||
"CI_CRED_FILE": "", | ||
"ARTIFACT_DIR": "", | ||
"OC_CLI": "", | ||
} | ||
}, | ||
{ | ||
"name": "Launch main.go", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "debug", | ||
"program": "${workspaceRoot}/main.go", | ||
"env": { | ||
"WATCH_NAMESPACE": "openshift-adp", | ||
// "KUBECONFIG": "", | ||
"KUBERNETES_MASTER": "http://localhost:8080" | ||
} | ||
}, | ||
] | ||
} | ||
|
||
``` | ||
|
||
copy `default_settings.json` file from `test/e2e/templates/` directory to `.vscode/` directory and modify it as per your needs. | ||
|
||
You can now use Run and Debug menu to launch | ||
- Debug E2E Test | ||
- This runs the test suite in debug mode. You can add breakpoints to step through the end to end test. | ||
- Prerequisites: | ||
- You have installed OADP Operator. To install current commit run `make deploy-olm` | ||
- Launch main.go | ||
- This runs the operator on your machine in debug mode. You can add breakpoints and step through the code. | ||
- You will not see OADP in Installed Operators but it will be watching for DPA resources in the namespace as if it was installed. | ||
- Prerequisites: | ||
- Run `make install apply-velerosa-role` to install CRDs and create service accounts, a task normally handled by OLM but not in this case. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
localhost:8080 4reelz?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the default. Not defining it is also fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your kubeconfig takes care of what cluster it talks to.