Skip to content

plugin bundling scripts need to check checksum when downloading #2539Add checksum verification #3336

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

Draft
wants to merge 30 commits into
base: main
Choose a base branch
from

Conversation

7908837174
Copy link

Related files:

build-manifest.json
app-build-manifest.json
app/scripts/setup-plugins.js
container/fetch-plugins.sh

7908837174 added 29 commits May 16, 2025 11:14
- Added 40px margin to bottom of sidebar toggle button
- Prevents button from being hidden by auto-hiding taskbar
- Added comprehensive test suite for button accessibility
- Includes responsive design tests
- Maintains cross-platform compatibility

Fixes kubernetes-sigs#1287
@k8s-ci-robot k8s-ci-robot added the do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. label May 23, 2025
Copy link

linux-foundation-easycla bot commented May 23, 2025

CLA Not Signed

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: 7908837174
Once this PR has been reviewed and has the lgtm label, please assign illume for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. label May 23, 2025
@k8s-ci-robot k8s-ci-robot requested review from illume and yolossn May 23, 2025 03:21
@k8s-ci-robot k8s-ci-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label May 23, 2025
@k8s-ci-robot
Copy link
Contributor

Keywords which can automatically close issues and at(@) or hashtag(#) mentions are not allowed in commit messages.

The list of commits with invalid commit messages:

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. I understand the commands that are listed here.

@illume
Copy link
Contributor

illume commented May 23, 2025

Thanks @7908837174

It seems there's a bunch of unrelated commits in here.

Here's how you can fix it:

  • make a new branch with all your main things on it (so you have a backup)
  • sync your main branch to the headlamp main branch (they should be the same)
  • create a new branch with your commit on there (you can use git cherry-pick to bring your commit in)
  • create a new PR with your new branch

Basically,

  • always work on a new branch not on your forks main branch. This lets you create new PRs easily with those branches.
  • always keep your forks main branch in sync with the headlamp main branch

For the CLA check failing: If you click here you will see instructions on what to do: https://api.easycla.lfx.linuxfoundation.org/v2/repository-provider/github/sign/20677499/220546758/3336/#/?version=2

Your email address example . com is not a valid domain name. So that's probably why the CLA tool won't work... it needs a real email address. The github privacy preserving one works.


Your main branch on your repo needs to be reset, then the branch should include only the commit(s) you want to include in the PR.

You can reset the main branch like so:

# back up your old main branch and then remove the main branch
git checkout main
git checkout -b main-bak

git branch -D main

# add an upstream remote if you don't already have one.
git remote -v
git remote add upstream [email protected]:kubernetes-sigs/headlamp.git
git fetch upstream --all

Afterwards you should be able to create new branches with all these other commits in there.

Then later to sync your new main branch you can do this:

git checkout main
git pull upstream main

@illume illume mentioned this pull request May 23, 2025
@illume illume marked this pull request as draft May 23, 2025 09:37
@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label May 23, 2025
@7908837174
Copy link
Author

7908837174 commented May 24, 2025 via email

@k8s-ci-robot
Copy link
Contributor

PR needs rebase.

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.

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 26, 2025
@illume
Copy link
Contributor

illume commented May 26, 2025

@7908837174 Let me know if you need any help? Feel free to dm me on the k8s slack if you want to chat to try and fix it together.

But I think the instructions above should be comprehensive enough to fix things.

@7908837174
Copy link
Author

7908837174 commented May 26, 2025 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants