{"id":37812323,"url":"https://github.com/ch007m/pipeline-dsl-builder","last_synced_at":"2026-01-16T15:35:36.121Z","repository":{"id":247574764,"uuid":"826200775","full_name":"ch007m/pipeline-dsl-builder","owner":"ch007m","description":"java pipeline dsl builder project","archived":false,"fork":false,"pushed_at":"2024-11-27T10:03:28.000Z","size":6884,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-27T10:31:18.500Z","etag":null,"topics":["buildpack","generator","konflux","tekton","tekton-pipelines"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ch007m.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-09T09:01:59.000Z","updated_at":"2024-11-27T10:03:31.000Z","dependencies_parsed_at":"2024-07-18T12:57:43.285Z","dependency_job_id":"0cb968d0-0fe6-43a9-be31-2d7d7c18b07b","html_url":"https://github.com/ch007m/pipeline-dsl-builder","commit_stats":null,"previous_names":["ch007m/pipeline-dsl-builder"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ch007m/pipeline-dsl-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ch007m%2Fpipeline-dsl-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ch007m%2Fpipeline-dsl-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ch007m%2Fpipeline-dsl-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ch007m%2Fpipeline-dsl-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ch007m","download_url":"https://codeload.github.com/ch007m/pipeline-dsl-builder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ch007m%2Fpipeline-dsl-builder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["buildpack","generator","konflux","tekton","tekton-pipelines"],"created_at":"2026-01-16T15:35:36.051Z","updated_at":"2026-01-16T15:35:36.110Z","avatar_url":"https://github.com/ch007m.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Workflow YAML Generator\n\n![e2e testing workflow](https://github.com/ch007m/pipeline-dsl-builder/actions/workflows/e2e-testing.yaml/badge.svg)\n\nThe Workflow YAML Generator tool simplifies the life of the users when they play with a Workflow engine as Tekton, [Konflux](https://konflux-ci.dev/) to generate their corresponding YAML resource file from a configuration file containing the definition about the Job and the actions/steps using a `common/unified` language !\n\nThe application has been designed around the following principles:\n\n- Have a quarkus standalone application able to generate different YAML resource files for a provider: Tekton, Konflux, etc\n- Define the Job and actions using a `common` language\n- Generate using the Fabric8 kubernetes Fluent API \u0026 Builder the resources using [Tekton model v1](https://github.com/fabric8io/kubernetes-client/tree/main/extensions/tekton/model-v1/)\n- Propose `Factories` able to generate the Tekton resources such as: params, labels, workspaces, results, finally using `defaulting` values or YAML content from the configuration file\n- Support to specify a domain/group: `example, build, etc` to organize the different resources generated\n\n**Note**: This project is complementary to what Dekorate can populate today for [Tekton](https://github.com/dekorateio/dekorate/tree/main/annotations/tekton-annotations) !\n\n## How to use it\n\nGit clone the project and create the jar file of the standalone Quarkus application:\n\n```bash\n./mvnw package\n```\n\nCreate a configuration YAML file where you define the parameters as:\n - The workflow provider to be used: `konflux` or `tekton`\n - The `domain` to group the generated files under the output path\n - A job\n```bash\ncat \u003c\u003cEOF \u003e my-config.yaml\nprovider: tekton\nresourceType: PipelineRun\ndomain: example\n\njob:\n  name: simple-job-embedded-script\n  description: Simple example of a Tekton pipeline echoing a message\n\n  actions:\n  - name: say-hello\n    # The script to be executed using a linux container\n    script: |\n      #!/usr/bin/env bash\n      \n      set -e\n      echo \"Say Hello\"\nEOF\n```\nand launch it:\n```bash\njava -jar target/quarkus-app/quarkus-run.jar builder -c my-config.yaml -o out/flows\n```  \n\nNext, check the pipeline(s) generated under `./out/flows/\u003cdomain\u003e`\n\n**Remark**: Use the parameter `-h` to get the help usage of the application\n\nThe [configurations](./configurations) folder proposes different YAML config examples of what you can do :-)\n\n## Some scenario ideas\n\nSome examples of configuration are described part of this [document](SCENARIO.md) - Enjoy :-)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fch007m%2Fpipeline-dsl-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fch007m%2Fpipeline-dsl-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fch007m%2Fpipeline-dsl-builder/lists"}