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

Remote Taskfiles experiment #1317

Open
11 of 15 tasks
pd93 opened this issue Aug 29, 2023 · 39 comments
Open
11 of 15 tasks

Remote Taskfiles experiment #1317

pd93 opened this issue Aug 29, 2023 · 39 comments
Labels
area: remote Changes related to remote taskfiles. experiment: draft Experimental feature - Pending feedback on draft implementation.

Comments

@pd93
Copy link
Member

pd93 commented Aug 29, 2023

Warning

All experimental features are subject to breaking changes and/or removal at any time. We strongly recommend that you do not use these features in a production environment. They are intended for testing and feedback only.

Note

You can view the Remote Taskfiles experiment documentation on our website, including instructions on how to enable/disable it.

Context

This experiment attempts to solve the problems originally described by #770.

Currently, Task only supports running Taskfiles located on the local filesystem. This makes it difficult to reuse Taskfiles across various repositories and systems without making copies of a file. It would be useful to have a way to run a Taskfile located on a remote system or run a local Taskfile that includes one on a remote system.

Proposal

This experiment would allow users to run a Taskfiles located elsewhere, such as via HTTP or in a remote Git repository. These remote Taskfiles can either be run directly from the CLI or included by another Taskfile.

We're looking to gather feedback on the current draft, so please feel free to leave your thoughts/comments here.

Decision log / TODOs:

@task-bot task-bot added the state: needs triage Waiting to be triaged by a maintainer. label Aug 29, 2023
@pd93 pd93 added experiment: proposed Experimental feature - Pending feedback on proposal. and removed state: needs triage Waiting to be triaged by a maintainer. labels Aug 29, 2023
@task-bot
Copy link
Collaborator

task-bot commented Aug 29, 2023

This issue has been marked as an experiment proposal! 🧪 It will now enter a period of consultation during which we encourage the community to provide feedback on the proposed design. Please see the experiment workflow documentation for more information on how we release experiments.

@pd93 pd93 added the area: remote Changes related to remote taskfiles. label Sep 5, 2023
@pd93 pd93 added experiment: draft Experimental feature - Pending feedback on draft implementation. and removed experiment: proposed Experimental feature - Pending feedback on proposal. labels Sep 14, 2023
@task-bot
Copy link
Collaborator

task-bot commented Sep 14, 2023

This experiment has been marked as a draft! ✨ This means that an initial implementation has been added to the latest release of Task! You can find information about this experiment and how to enable it in our experiments documentation. Please see the experiment workflow documentation for more information on how we release experiments.

@wburningham
Copy link

wburningham commented Sep 15, 2023

If one wants to use remote tasks in CI how does one bypass the prompt when running a task for the first time. Is there a flag or environment variable that can be set to “force yes” to the prompt on whether or not to include the remote task file?

BTW thanks for a great experiment!

@wburningham
Copy link

The documentation mentions the -y flag for tasks that require prompts, but the experimental documentation doesn't mention if that also applies to remote taskfile includes.

@pd93
Copy link
Member Author

pd93 commented Sep 15, 2023

@wburningham Thanks for pointing this out. The --yes flag has not currently been set up to automatically accept the remote task prompts. This is definitely something we can consider in the next iteration. I think this is an acceptable change, but if anyone has any security concerns about being able to skip the remote taskfile warning prompts, please add a comment.

@oliver-helix
Copy link

For Running root remote Taskfiles, consider specifying the remote taskfile via the --taskfile arg?
task hello --taskfile https://raw.githubusercontent.com/go-task/task/main/Taskfile.yml

@oliver-helix
Copy link

Any idea why the following doesn't work?

# taskfile.yml
version: '3'

include:
  my-remote-namespace: https://raw.githubusercontent.com/go-task/task/main/Taskfile.yml

tasks:
  test:
    cmds:
      - echo test succesful
$ task --version
Task version: 3.30.1
$ task test
task: [test] echo test succesful
test succesful
$ export TASK_X_REMOTE_TASKFILES=1
$ task my-remote-namespace:packages
task: No tasks with description available. Try --list-all to list all tasks
task: Task "my-remote-namespace:packages" does not exist

@pd93
Copy link
Member Author

pd93 commented Sep 15, 2023

@oliver-helix Good idea about the root remote taskfiles. As for why your example doesn't work. I think its just a simple typo:

  # taskfile.yml
  version: '3'

- include:
+ includes:
    my-remote-namespace: https://raw.githubusercontent.com/go-task/task/main/Taskfile.yml

  tasks:
    test:
      cmds:
        - echo test succesful

Edit: We should probably give a better error message for this...

@oliver-helix
Copy link

oliver-helix commented Sep 15, 2023

Doh! My bad. Thanks for the help! Consider updating the experiment docs to fix this typo.

@pd93
Copy link
Member Author

pd93 commented Sep 15, 2023

Ah whoops. Well spotted. I've updated the docs 👍

@plcarman
Copy link

plcarman commented Sep 19, 2023

Hi, just wanted to say this experiment is exciting!

Do you have any plans to add support for remote endpoints that require authentication? My use case is that I have a remote Taskfile stored in GitLab. I would think an easy-ish way would be to honor my .netrc file like git and other tools do.

edit: I caught up on #1152 and I see there has already been talk about authentication. looking forward to whatever comes! Thanks.

@wburningham
Copy link

The --yes flag has not currently been set up to automatically accept the remote task prompts. This is definitely something we can consider in the next iteration. I think this is an acceptable change, but if anyone has any security concerns about being able to skip the remote taskfile warning prompts, please add a comment.

@pd93 my company is ready to try out taskfiles because the remote taskfile experiment moved to draft. Being able to run on CI with a --yes flag is our next implementation step.

When you say "the next iteration" are you wanting (or willing to accept) a PR?

The Experiments Documentation didn't specify any general timelines for accepting feedback/comments. Are you planning on waiting a minimum amount of time before releasing changes to this experiment?

@pd93
Copy link
Member Author

pd93 commented Sep 21, 2023

@wburningham really nice to hear that this feature is making the difference for you. Are there any other blockers or features you'd need before being able to use this fully? (besides the obvious Git/SSH integration).

When you say "the next iteration" are you wanting (or willing to accept) a PR?

Absolutely! Contributions are always welcome, though we encourage people to discuss them first to make sure multiple people aren't doing the same thing and/or wasting their time. In this particular case, I actually already have a branch which will add this functionality and I intend to post a PR soon. As a potential future user of that functionality, your feedback on this would be very welcome.

If there are other extensions/improvements you'd like to help contribute to, I'm always happy to have some help.

The Experiments Documentation didn't specify any general timelines for accepting feedback/comments. Are you planning on waiting a minimum amount of time before releasing changes to this experiment?

There is no minimum/fixed time period for changes. @andreynering and I both work on this in our spare time, so planning is hard and changes tend to happen in chunks when we find some bandwidth. A new draft of the experiment will be released alongside the next version of Task which tends to happen around once a month, but this is also subject to our availability and having a set of meaningful changes to release.

I'm hoping to address the remaining TODOs in this issue (not the future extensions) in the next week or so and hopefully we'll get some good feedback from that which will allow us to move forward.


Edit - See PR:

@pd93
Copy link
Member Author

pd93 commented Sep 22, 2023

I've also just created #1345 which changes the default behaviour of Remote Taskfiles to prefer remote files over cached ones as discussed in previous PRs.

I've added a couple of thoughts to the end of the PR description. I would really appreciate feedback on this from @andreynering @ryancurrah @caphrim007 and anyone else with an opinion on the matter 🙏

@oliver-helix
Copy link

oliver-helix commented Sep 26, 2023

Any roadmap (ETA) for when remote taskfiles with Git ssh for private repository acecss will be added? Thanks so much for your hard work on this awesome project!

@ThomasSanson
Copy link

Greetings,

First and foremost, I would like to extend my heartfelt congratulations and gratitude for the exemplary work you have undertaken.

I am curious to know whether you have plans to support 'remote' Taskfiles that incorporate other Taskfiles. For instance, in this link: GitLab - Devcontainer Taskfiles, if a directory is segmented into multiple Taskfiles, will remotely including the principal Taskfile also entail the inclusion of the associated Taskfiles?

I look forward to your insightful response and thank you in advance for your consideration.

@lorenzofaresin
Copy link

Is it possible to add completion capabilities on remote tasks?

@vmaerten
Copy link
Collaborator

vmaerten commented Oct 16, 2023

Hi!
Thanks for your work, it's a really really appreciated feature!
We plan to use it, to mutualize all our project's Takefile
Amazing work 🔥

@yordis
Copy link

yordis commented Oct 29, 2023

I wonder if adding something like a shasum check would be a good idea here

@titpetric
Copy link

I love the experiment, the only thing I'm missing is an allow-list style configuration of what urls the experiment is allowed to fetch from at this moment. This would allow us to adopt it in CI and just allowlist the github public urls for the trusted org/repo/branch.

TASKLIST_X_REMOTE_TASKFILES_ALLOW=https://raw.githubusercontent.com/<Owner>/<Repo>/main/[,csv?]

@pd93
Copy link
Member Author

pd93 commented Nov 17, 2023

Thanks all for the kind words :) Catching up on some comments:

Firstly, I don't have any ETAs for this experiment and I don't plan to give any. The last month or so has been pretty quiet in terms of progress and this is simply a reflection of other life priorities. The time I can give to the project varies a lot and some weeks you will see lots of progress and other weeks you will see none. For this reason, it would be unfair to make any promises that I can't keep. Rest assured that this is always on my mind and I fully intend to see it through. I won't be responding to any further comments on timelines/ETAs.

With that said, I'm very grateful for all the excitement and support and I really appreciate all the feedback and ideas. Please keep it coming ❤️

I am curious to know whether you have plans to support 'remote' Taskfiles that incorporate other Taskfiles. For instance, in this link: GitLab - Devcontainer Taskfiles, if a directory is segmented into multiple Taskfiles, will remotely including the principal Taskfile also entail the inclusion of the associated Taskfiles?

@ThomasSanson This is something I definitely want to support at some point and is on my TODO list. However, I haven't put much thought into how the implementation will work yet. I don't think we can ship the experiment without this as it would result in some very unexpected behaviour. Stay tuned.

Is it possible to add completion capabilities on remote tasks?

@lorenzofaresin It's definitely possible, but this is probably low priority and something that can be added once the experiment is stable. This is also heavily linked to #293 and #1157. Completions need some love and attention in general, not just for remote Taskfiles.

I wonder if adding something like a shasum check would be a good idea here

@yordis Can you please open a ticket for this so that we can discuss it in its own thread? It would be useful if you can include your use case for this. I can see a few, but it's nice to hear things from other people's perspectives.

an allow-list style configuration of what urls the experiment is allowed to fetch from at this moment

@titpetric Same as above. Could you please open an issue for this and explain your use case in as much detail as possible. I will take a look there.

@BnGx
Copy link

BnGx commented Dec 1, 2023

It would also be very useful to have the ability to use remote files using the -t option not worry about having the file available locally and having a centralized task repository. For example, typing the command

task -t https://www.example.com/mytasks.yaml task1

@onedr0p
Copy link
Contributor

onedr0p commented Dec 1, 2023

Another feature that I didn't see brought up would be to allow the remote ref to include a git tag or ref so they can be versioned instead of always pulling the "latest".

Not sure the best way to implement this since taskfile would need to know is a git repo and not a static file being served on nginx or whatever 😄

https://github.com/go-task/task/main/Taskfile.yml?ref=v1.0.0
https://github.com/go-task/task/main/Taskfile.yml?ref=testing

This would be great to distribute taskfiles to a larger audience while not introducing breaking or unexpected changes.

Edit: This already looks to be on the roadmap, sorry for the comment!

@blackjid
Copy link
Contributor

blackjid commented Dec 1, 2023

that would be awesome...

I think that is refered in the "Future Extensions" section of the main body of this issue...
image

@pd93
Copy link
Member Author

pd93 commented Dec 1, 2023

It would also be very useful to have the ability to use remote files using the -t option

@BnGx as @blackjid said, this is what I'm referring to as "root remote Taskfiles" and there is a draft PR for it #1347. However, there are a couple of issue with it that need resolving (hence it being a draft). This is quite near the top of my list.

Another feature that I didn't see brought up would be to allow the remote ref to include a git tag or ref so they can be versioned instead of always pulling the "latest".

@onedr0p This can already be done with refs to commits/branches/tags via GitHub URIs. For example:

Ideally, I would like the HTTP implementation to remain as simple as possible as ?ref could conflict with a real param on a real website.

We do plan to add a Git implementation later. However, this is only really useful if your Git repo is behind some kind of auth. If you are able to access it via HTTP(S), then this is not necessary.

@blackjid
Copy link
Contributor

blackjid commented Dec 1, 2023

Would the use of go-getter let you have git, plus http with reference query string, and some other source go-getter supports.
Why did you decided against using it? I'm just curious..

@fredrikaverpil
Copy link

Any roadmap (ETA) for when remote taskfiles with Git ssh for private repository acecss will be added? Thanks so much for your hard work on this awesome project!

Ugly workaround:

includes:
  private: https://git:[email protected]/user/repo/main/Taskfile.yml

Follow the discussion around this here: #1420 (reply in thread)

@luis-garza
Copy link

There is still no plan for the git ssh repository access?
It's a feature that prevent us to use this nice experiment... 😢

@vmaerten
Copy link
Collaborator

I understand that implement SSH can be time consuming and will be done in the long run but is there any plan to support env variable in Taskfile's URL ?
(Like proposed here : #1420 (reply in thread))

I prevent us (and maybe others) to use it because we have a private org

@jylenhofdecat
Copy link

Any news on the possibility to use variable (tipycally for token) in github URL ?

@prnk28
Copy link

prnk28 commented Feb 5, 2024

What if we adopted a system similar to homebrew tap's where an org would have a taskfiles repository? I feel like we could simplify the import scheme.

Any roadmap (ETA) for when remote taskfiles with Git ssh for private repository acecss will be added? Thanks so much for your hard work on this awesome project!

Ugly workaround:

includes:
  private: https://git:[email protected]/user/repo/main/Taskfile.yml

Follow the discussion around this here: #1420 (reply in thread)

@titpetric
Copy link

titpetric commented Feb 6, 2024 via email

@vmaerten
Copy link
Collaborator

vmaerten commented Mar 4, 2024

It seems local -> remote -> remote:local includes does not work correctly
I created another issue to track it down :

@pd93
Copy link
Member Author

pd93 commented Mar 4, 2024

@vmaerten #1347 is still WIP, but will include a fix for resolving includes in remote files correctly.

@alexjball
Copy link

go-getter integration would be make go-task so much more useful for sharing tooling across our org. I think following the terraform cli's support for module sources would provide a validated approach to caching, auth, and featureset.

go-getter supports a double slash syntax to specify a subpath of folders/archives/repos. Supporting this would be amazing to give scripts access to supporting files. Developers just need to set up native credentials for the source, and then could pull in all the team's tooling using a remote include and vars. And any repo-specific tooling would remain in there

For caching, terraform always uses the local module path and exits with an error if it's missing. You run terraform init to download remote sources once, and whenever versions change. These sources are stored under the ignored tool folder, .task in this case. This makes it straightforward to debug since you can view the code locally.

To match the current behavior, go-task would download source by default, unless you used --download and --offline to try only the local version.

@titpetric
Copy link

titpetric commented Mar 20, 2024 via email

@vmaerten
Copy link
Collaborator

I've started working on adding support of Git in remote taskfile.

If you want to try it out, you need to clone my repo https://github.com/vmaerten/task, switch to remote-git branch, and run go run ./cmd/task -d <your_dir>

We will support SSH url, SCP url and HTTPS url.
You can find the docs here : https://github.com/vmaerten/task/blob/4f85e85167b375100e3da3803973ff203045935e/website/docs/experiments/remote_taskfiles.mdx?plain=1#L65

I'll add more examples in the next couple of days.

@blackjid
Copy link
Contributor

That is awesome @vmaerten thank for the work...

Why did you choose to set the filename and the git reference in the same querystring in the url? Why not just having a different querystring for the filename? https://github.com/foo/bar.git?ref=main&filename=directory/Taskfile.yml

Or if you don't want the extra query string, a more readable form I think could be to add the path to the file just after the .git https://github.com/foo/bar.git/directory/Taskfile.yml?ref=main maybe with a double slash // like terraform and others does.. https://github.com/foo/bar.git//directory/Taskfile.yml?ref=main

Sorry if this is not the place or time to give feedback. Maybe discord?

@vmaerten
Copy link
Collaborator

Hello @blackjid
Thanks a lot for your feedback. I've forgot to put the PR's URL here. I'll copy / past your comment there and we can discuss on it the PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: remote Changes related to remote taskfiles. experiment: draft Experimental feature - Pending feedback on draft implementation.
Projects
Status: Draft
Development

No branches or pull requests