-
Notifications
You must be signed in to change notification settings - Fork 349
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
Add support for imagePullSecrets to sidecar's Deployment #1115
Add support for imagePullSecrets to sidecar's Deployment #1115
Conversation
Signed-off-by: Saad Hussain <[email protected]>
Signed-off-by: Saad Hussain <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #1115 +/- ##
==========================================
+ Coverage 88.05% 88.07% +0.02%
==========================================
Files 86 86
Lines 5274 5284 +10
==========================================
+ Hits 4644 4654 +10
Misses 466 466
Partials 164 164
Continue to review full report at Codecov.
|
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. It would be great to have one extra test, but this is ready to be merged.
… when adding a new one for the sidecar agent Signed-off-by: Saad Hussain <[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
Thank you for another contribution! |
Original git issue: #1018
Previous (erroneous) PR for context: #1103
imagePullSecrets can be configured for components by providing a custom serviceAccount for the component and specifying the imagePullSecrets in the serviceAccount. However, the agent sidecar does not support custom serviceAccounts since its Deployment may already use a serviceAccount. This PR adds support for
imagePullSecrets
to the agent spec for cases where an imagePullSecret for the sidecar is desired.PR to update documentation: jaegertracing/documentation#416