-
Notifications
You must be signed in to change notification settings - Fork 14
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
Revert automatic bpfman image loading into KIND cluster #113
Revert automatic bpfman image loading into KIND cluster #113
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #113 +/- ##
=======================================
Coverage 27.61% 27.61%
=======================================
Files 81 81
Lines 6999 6999
=======================================
Hits 1933 1933
Misses 4877 4877
Partials 189 189
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
With these changes reverted, does make run-on-kind
build and load the local bpfman-operator
and bpfman-agent
images by default?
I was testing w/Mohammed's pr #102 yesterday, and that didn't seem to be happening. I had to explicitly load upstream images using:
BPFMAN_IMG="quay.io/afredette/bpfman:latest" BPFMAN_OPERATOR_IMG="quay.io/mmahmoud/bpfman-opertor:tcx-support" BPFMAN_AGENT_IMG="quay.io/mmahmoud/bpfman-agent:tcx-support" make run-on-kind
Also, can you spell out the steps needed for someone to use a locally built |
I was thinking of something like the following: By default,
UPDATE: I added issue #118 for these suggestions to be considered separately. |
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 good other than the one comment.
FYI, I tested this pr and it does after the suggested change is made to load the |
3fe1275
to
8650f28
Compare
Noted. I dropped my [testing] commit.
I updated the PR description, though perhaps the cited example should go in our docs. |
I'm going to approve this pr as is, but please add that info to the docs. Somewhere in the following area is probably a good place: |
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
Previously, the Makefile was modified to load the bpfman image
unconditionally into the KIND cluster. This commit reverts that
change. To load the bpfman image into the KIND cluster, use the
./hack/kind-load-image.sh
script as a discrete step.For example:
This reverts:
run-on-kind
works without local images #111