-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Feature: method to absorb git-source yaml into Pipeline/Task $inputs etc #2219
Comments
I'm not entirely clear what's being requested. Could you show a more complete Pipeline example to demo what you're trying to achieve? Or sketch out some YAML of the interface you'd like to see? |
How/what its keyed under and accessible via the |
I understand your problem. We had the same problem when adopting Tekton, and we created our own |
Rotten issues close after 30d of inactivity. /close Send feedback to tektoncd/plumbing. |
Stale issues rot after 30d of inactivity. /lifecycle rotten Send feedback to tektoncd/plumbing. |
@tekton-robot: Closing this issue. 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/test-infra repository. |
/reopen |
@bitsofinfo: Reopened this issue. 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/test-infra repository. |
/remove-lifecycle rotten |
Issues go stale after 90d of inactivity. /lifecycle stale Send feedback to tektoncd/plumbing. |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. /lifecycle stale Send feedback to tektoncd/plumbing. |
Stale issues rot after 30d of inactivity. /lifecycle rotten Send feedback to tektoncd/plumbing. |
Rotten issues close after 30d of inactivity. /close Send feedback to tektoncd/plumbing. |
@tekton-robot: Closing this issue. 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/test-infra repository. |
I'd like for devs to be able to configure some aspects of the pipeline behavior via YAML that lives in the cloned git source that Tekton treats as an input resource (currently).
I.E. some way I could"absorb the contents of this yaml file into the Pipeline's scope of available variables that can then by used via some sort of tekton
$inputs.[yamldoc].prop1.subitem2.key
, then you could just reference that data w/ CEL expressions anywhere in Tasks.Similar to the whole task
results
functionality and taskinputs
. Something that could just source a structure from a yaml file that then becomes useable as$(yamlsource.parent.list[0].name)
whatever.Right now to do this I'm having to manually read this YAML then traverse it and turn it into a bunch of Task result files on the shared volume which seems clunky.
The text was updated successfully, but these errors were encountered: