-
Notifications
You must be signed in to change notification settings - Fork 93
feat: support blobfuse2 preview package install #2137
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
feat: support blobfuse2 preview package install #2137
Conversation
Welcome @jainakanksha-msft! |
Hi @jainakanksha-msft. Thanks for your PR. I'm waiting for a kubernetes-sigs 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-sigs/prow repository. |
@jainakanksha-msft can you sign the easycla? select individual contributor |
/ok-to-test |
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.
/label tide/merge-method-squash
/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.
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.
/lgtm cancel
pkg/blobfuse-proxy/install-proxy.sh
Outdated
@@ -74,9 +74,14 @@ then | |||
pkg_list="${pkg_list} blobfuse2" | |||
else | |||
if echo "${BLOBFUSE2_VERSION}" | grep -q "preview"; then | |||
$HOST_CMD apt remove -y blobfuse2 | |||
if dpkg -l | grep -q blobfuse2; then |
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.
need to run dpkg -l
comand on the host, another option is $HOST_CMD apt remove -y blobfuse2 || true
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.
Handled
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.
Pull Request Overview
This PR adds support for installing blobfuse2 preview packages by detecting when the version string contains "preview" and handling package conflicts between the regular and preview versions.
Key changes:
- Added version detection logic to identify preview versions
- Implemented mutual exclusion between blobfuse2 and blobfuse2-preview packages
- Ensured proper package removal before installing the alternative version
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: andyzhangx, jainakanksha-msft, mittachaitu 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 |
/cherrypick release-1.26 |
@andyzhangx: new pull request created: #2139 In response to this:
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. |
No description provided.