-
Notifications
You must be signed in to change notification settings - Fork 345
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
Create missing CA config maps on deployment controller #1347
Create missing CA config maps on deployment controller #1347
Conversation
bfb88bf
to
5db2056
Compare
Codecov Report
@@ Coverage Diff @@
## master #1347 +/- ##
==========================================
+ Coverage 86.02% 86.23% +0.20%
==========================================
Files 90 90
Lines 5125 5143 +18
==========================================
+ Hits 4409 4435 +26
+ Misses 548 538 -10
- Partials 168 170 +2
Continue to review full report at Codecov.
|
LGTM |
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.
Only one minor comment.
5db2056
to
a891a1d
Compare
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
Pull request has been modified.
Why the change from patch to update? |
@@ -108,74 +109,61 @@ func (r *ReconcileDeployment) Reconcile(request reconcile.Request) (reconcile.Re | |||
err = r.rClient.Get(ctx, types.NamespacedName{Name: request.Namespace}, ns) |
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.
@jpkrohling @rubenvp8510 What is the difference between the r.rClient
and r.client
? Seems both are used in this class?
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
a408d7a
to
8c5f86f
Compare
This PR changes the deployment controller so that it always attempt to create the configmaps in the namespace for the target deployments, as long as sidecar injection is desired for the deployment.
Signed-off-by: Juraci Paixão Kröhling [email protected]