-
Notifications
You must be signed in to change notification settings - Fork 44
Implement istiobase controller #802
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
base: main
Are you sure you want to change the base?
Conversation
Needs #801 |
abda715
to
9cf3e63
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #802 +/- ##
===========================================
- Coverage 76.36% 48.90% -27.47%
===========================================
Files 44 45 +1
Lines 2636 2773 +137
===========================================
- Hits 2013 1356 -657
- Misses 535 1352 +817
+ Partials 88 65 -23 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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, do we need any tests for this?
8e3e549
to
8e5524e
Compare
/retest |
I was about to write the same comment, some tests would be good |
Yeah, I'm just about done with the tests. |
8e5524e
to
7feaafe
Compare
/retest |
1 similar comment
/retest |
7feaafe
to
ed577c9
Compare
Not sure what's up with the integration test coverage job, because the integration tests pass fine when you run them locally (and in CI). There is a strange error message related to the revisiontag controller:
|
/test all |
The istiobase controller manages the application of the base chart. As only one instance of this chart can be installed at once, this has to be done by a new controller. If we had added the rendering of this chart to the istiorevision controller, we could have two instances of that controller both trying to update the chart/release. Signed-off-by: Marko Lukša <[email protected]> Signed-off-by: Daniel Grimm <[email protected]>
Signed-off-by: Marko Lukša <[email protected]> Signed-off-by: Daniel Grimm <[email protected]>
… in a different namespace Signed-off-by: Marko Lukša <[email protected]> Signed-off-by: Daniel Grimm <[email protected]>
Signed-off-by: Daniel Grimm <[email protected]>
Signed-off-by: Daniel Grimm <[email protected]>
@luksa: The following tests failed, say
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
The istiobase controller manages the application of the base chart. As only one instance of this chart can be installed at once, this has to be done by a new controller. If we had added the rendering of this chart to the istiorevision controller, we could have two instances of that controller both trying to update the chart/release.
Addresses #749