You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, the tekton-lint tool does not properly handle parameters of type object in Tekton pipeline definitions. This causes issues when parameters of this type are used in tasks, resulting in incorrect warnings and errors.
Undefined param 'gitRepository.name' at .spec.tasks[2].params[8].value in'git-clone'
Describe the solution you'd like
The tool should correctly recognize and handle parameters of type object and their properties, without reporting them as undefined.
Is your feature request related to a problem? Please describe.
Currently, the
tekton-lint
tool does not properly handle parameters of typeobject
in Tekton pipeline definitions. This causes issues when parameters of this type are used in tasks, resulting in incorrect warnings and errors.For example, given a parameter defined as:
And its usage in a task:
The tool incorrectly reports:
Describe the solution you'd like
The tool should correctly recognize and handle parameters of type object and their properties, without reporting them as undefined.
Describe alternatives you've considered
Additional context
https://tekton.dev/docs/pipelines/tasks/#object-type
The text was updated successfully, but these errors were encountered: