-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fix 2.9 tests #164
Fix 2.9 tests #164
Conversation
Sorry, but not sure I understand what is being fixed here.
|
Another 2.9 CI run: |
FTR, after understanding the issue and discussing offline I understood the test failed due to a legit bug; therefore it seems nice to leave as it is so it can capture when it is fixed and perhaps simply add a check to ensure services are deleted propperly |
Signed-off-by: Satyajit Bulage <[email protected]>
Signed-off-by: Satyajit Bulage <[email protected]>
Signed-off-by: Satyajit Bulage <[email protected]>
Signed-off-by: Satyajit Bulage <[email protected]>
Thanks @mmartin24 for nice suggestions 👍 |
Signed-off-by: Satyajit Bulage <[email protected]>
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.
LGTM
Problem: Current 2.9 CI is failing for correctDrift test cases (79,80). The reason for failure is ConfigMap is getting deleted but service is not being removed rather it is being re-created. This behavior is observed after GitRepo deletion.
Solution: Used individual paths to ConfigMaps and Services so GitRepo will not install both applications simultaneously. Also, their deletion will be performed separately.
Changes made in the PR: Path is added to individual tests, Removed extra indentation.
While investigating this I found problem: Bundle is not getting removed after deleting GitRepo when multiple paths are used. (rancher/fleet#2586)