-
Notifications
You must be signed in to change notification settings - Fork 18
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
Make end-to-end tests work with a local porch-server #57
Conversation
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.
On a read through this looks good. I'll download the PR and try it in my environment.
NOTE: I've added instructions to run the end-to-end tests to the description of the PR. |
- start with clean etcd for local tests - make some problematic test cases more verbose (and faster) - handle the new testing scenario, when everything is running in-cluster, but the porch-server (that is running locally)
… Deployment resource, as opposed to all resources in the 9-controllers.yaml file
…running in-cluster or not
…ing out-of-cluster
…h the go-client module
Co-authored-by: Gergely Nagy <[email protected]>
/approve |
/retest |
/test presubmit-nephio-go-test |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: kispaljr, liamfallon, nagygergo The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Right now some end-to-end test cases fail if the porch-server is running locally and not in-cluster. (The same tests are working properly, if all components are running in-cluster)
This PR intends to fix this problem.
Fixes nephio-project/nephio#743
End-to-end test can be run with the following commands:
The above commands should all succeed with the code in this PR.
This PR is based on the loosely related #44