-
Notifications
You must be signed in to change notification settings - Fork 56
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
[v2] Stable envRefs #678
[v2] Stable envRefs #678
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## v2 #678 +/- ##
=======================================
Coverage 33.24% 33.25%
=======================================
Files 25 25
Lines 3949 3951 +2
=======================================
+ Hits 1313 1314 +1
- Misses 2474 2475 +1
Partials 162 162 ☔ View full report in Codecov by Sentry. |
t.Cleanup(func() { | ||
_ = run(exec.Command("kubectl", "delete", "-f", "e2e/testdata/git-auth-nonroot")) | ||
}) |
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.
This was deleting the secret needed by the operator in order to poll the repo, preventing the stack from reconciling / getting deleted.
88fabad
to
be10198
Compare
Stack CRDs that include `envRefs` will currently thrash the workspace's underlying StatefulSet because map order is undefined. This sorts the envRef keys ahead of time to keep the StatefulSet stable. As a result we're also able to turn on the E2E test in CI since it should now succeed reliably.
Stack CRDs that include
envRefs
will currently thrash the workspace's underlying StatefulSet because map order is undefined.This sorts the envRef keys ahead of time to keep the StatefulSet stable. As a result we're also able to turn on the E2E test in CI since it should now succeed reliably.