Skip to content
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 post sync ability to rename files #250

Open
Boojapho opened this issue Apr 20, 2023 · 5 comments
Open

Add post sync ability to rename files #250

Boojapho opened this issue Apr 20, 2023 · 5 comments
Labels
discussion This issue is not a bug or feature and a conversation is needed to find an appropriate resolution

Comments

@Boojapho
Copy link

Describe the problem/challenge you have
Sometimes syncs include files that have versions in the names of the files, which may be undesirable. If I sync a githubRelease with sample-v1.2.3-linux-amd64.tar.gz and extract a file named sample-v1.2.3, I may want to rename this to just sample so my binary matches what I had previously.

Describe the solution you'd like
In the spec, I'd like to see an option for renaming files after they are downloaded, and use wildcards/grouping for the source

renamePaths:
- from: sample-v*
  to: sample

This would take all files named sample-v* and rename it to sample. If more than one file matches, the behavior is indeterministic

Anything else you would like to add:
For flexibility, the from: should support globs and regex so the user could craft it to match what is needed. In addition, you may want to include group substitution in the to: so you could replace with a match in the regex.

Vote on this request

This is an invitation to the community to vote on issues, to help us prioritize our backlog. Use the "smiley face" up to the right of this comment to vote.

👍 "I would like to see this addressed as soon as possible"
👎 "There are other more important things to focus on right now"

We are also happy to receive and review Pull Requests if you want to help working on this issue.

@Boojapho Boojapho added carvel-triage This issue has not yet been reviewed for validity enhancement This issue is a feature request labels Apr 20, 2023
@neil-hickey neil-hickey added the discussion This issue is not a bug or feature and a conversation is needed to find an appropriate resolution label May 16, 2023
@neil-hickey
Copy link
Contributor

hey @Boojapho , thanks for submitting!

I think what you are describing is currently where vendir stops and expects a following tool to do what you are describing. At least how I view vendir's role in a workflow.

The purpose of vendir is to sync a directory to match a remote / local location. The functionality you are describing moves slightly beyond that, to modifying the syncronized bits to rename them or modify them in some way.

Could you describe why another tool that takes this directory as an input could not have this wildcard like behaviour instead of vendir?

@frimik
Copy link

frimik commented Nov 2, 2023

I had similar needs, and have also had needs to apply a local patch to certain things while waiting for upstream to bring on certain contributions. I "wrap" it in a Makefile... so Makefile does the vendir sync followed by whatever is needed. Vendir does what it does quite well and should continue to do so.

@renuy renuy removed carvel-triage This issue has not yet been reviewed for validity enhancement This issue is a feature request labels Jan 9, 2024
@reegnz
Copy link
Contributor

reegnz commented Feb 5, 2024

I'd also welcome it if there was a way to apply patch files through a post sync hook. Ideally it should just take regular patch files and apply them, ux could ideally be compatible with how https://linux.die.net/man/1/patch takes patches.
I'm using vendir with renovate bot, so using a make target to wrap it with is not a viable path forward.

@mnaser
Copy link

mnaser commented Apr 13, 2024

I'd also welcome it if there was a way to apply patch files through a post sync hook. Ideally it should just take regular patch files and apply them, ux could ideally be compatible with how https://linux.die.net/man/1/patch takes patches. I'm using vendir with renovate bot, so using a make target to wrap it with is not a viable path forward.

I'm on the same boat. Have you been able to make some sort of progress or workaround on this?

@reegnz
Copy link
Contributor

reegnz commented Apr 15, 2024

We've managed to add full vendir lock file maintenance support to renovatebot. Renovate now runs all of our vendir sync commands and commits the vendored files and opens PR-s (renovatebot/renovate#25113).

Executing patches to the vendored files could probably be done with a renovate post upgrade task. But we haven't gotten around to experimenting with that part yet.
Given that we mainly vendor helm charts that we run helm template on, and for those we have other established toolsets to do patching already (kustomize).

But all of that doesn't mean that an integrated patch file support in vendir wouldn't be welcome still, to come full-circle with vendoring.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
discussion This issue is not a bug or feature and a conversation is needed to find an appropriate resolution
Projects
Status: No status
Development

No branches or pull requests

6 participants