-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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 ImageRepository to addons templates #9551
Conversation
Welcome @yehiyam! |
Hi @yehiyam. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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/test-infra repository. |
Can one of the admins verify this patch? |
Codecov Report
@@ Coverage Diff @@
## master #9551 +/- ##
=======================================
Coverage 29.05% 29.05%
=======================================
Files 172 172
Lines 10482 10482
=======================================
Hits 3046 3046
Misses 7011 7011
Partials 425 425 |
7a781c3
to
4f74bef
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.
do you mind putting in the PR description an example usage of this ? the Before and After this PR
otherwise the code looks good
@medyagh I've updated the PR description |
4f74bef
to
40736fe
Compare
@medyagh, @tstromberg did you have a chance to look over this PR? |
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.
Looks great. Thank you!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: tstromberg, yehiyam The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
fixes #8298
minikube start has a flag
--image-repository
that can be used to specify a private docker registry for pulling minikube images.The imageRepository is used for some of the built in addons, but not for all of them.
For example, the ingress addon doesn't currently use the imageRepository
Before:
image is
us.gcr.io/k8s-artifacts-prod/ingress-nginx/controller:v0.34.1@sha256...
After:
image is
some.docker.registry/controller:v0.34.1