Open briankurilko opened 1 year ago
@briankurilko this is something that cannot really implemented in Tekton / Kubernetes. Kubernetes CRDs offer a "flat" structure, and we cannot change this. The only way we could do that would be with a custom cli (like tkn
) and some convention on how to group objects.
One thing to note though, is that with resolvers you don't really need to have any Tekton objects in your namespaces/project.
Feature request
Currently Kubernetes lists all the pipelines you've added to a given namespace in a flat list. This is manageable until you have too many unique pipelines (30+) in a single namespace/openshift project.
It would be amazing if I was able to group pipelines based on some sort of file structure. For example, having a folder structure like this:
Use case
I have 3 apps (appA, appB, and appC) that are all deployed in a single Kubernetes namespace through Tekton. Each app has a "deploy to dev", "deploy to qa", "deploy to stage", "deploy to perf", and "deploy to prod" pipeline. Each app also has a "build" pipeline. The apps also have a "smoke test" pipeline and a "load test" pipeline for each environment. In total, this means that there are 48 pipelines in a single Kubernetes namespace.
48 pipelines is too large to parse through for most users. I'd like to be able to organize the pipelines with something like the following structure, so that its easier to parse: