├── .cursor └── rules │ ├── basic.mdc │ ├── git.mdc │ └── tekton.mdc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── install-tkn │ │ └── action.yaml ├── pull_request_template.md ├── resources │ └── workspace-template.yaml ├── scripts │ ├── check_task_and_pipeline_yamls.sh │ └── test_tekton_tasks.sh └── workflows │ ├── check-buildah-remote.yaml │ ├── check-kustomize-build.yaml │ ├── check-readmes.yaml │ ├── check-ta.yaml │ ├── check-task-and-pipeline-yamls.yaml │ ├── check-task-migration.yaml │ ├── check-task-owners.yaml │ ├── checkton.yaml │ ├── go-ci.yaml │ ├── run-task-tests.yaml │ └── yaml-lint.yaml ├── .gitignore ├── .sonarcloud.properties ├── .tekton ├── pull-request.yaml ├── push.yaml ├── scripts │ ├── build-acceptable-bundles.sh │ ├── create-task-pipeline-bundle-repos.sh │ ├── determine-if-e2e-execution-needed.py │ ├── github-update-comment.py │ └── validate-bundle-sanity.sh └── tasks │ ├── buildah.yaml │ ├── e2e-test.yaml │ ├── ec-checks.yaml │ ├── task-lint.yaml │ └── task-switchboard.yaml ├── .yamllint ├── CLAUDE.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── appstudio-utils ├── Dockerfile ├── README.md └── util-scripts │ ├── cleanup-build-directories.sh │ └── select-oci-auth.sh ├── archived-tasks ├── build-paketo-builder-oci-ta │ └── 0.1 │ │ ├── README.md │ │ └── build-paketo-builder-oci-ta.yaml ├── buildah-min │ ├── 0.4 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah-min.yaml │ │ ├── kustomization.yaml │ │ ├── migrations │ │ │ └── 0.4.1.sh │ │ └── patch.yaml │ └── 0.5 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah-min.yaml │ │ ├── kustomization.yaml │ │ └── patch.yaml ├── buildah-oci-ta │ ├── 0.4 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah-oci-ta.yaml │ │ ├── migrations │ │ │ └── 0.4.1.sh │ │ └── recipe.yaml │ └── 0.5 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah-oci-ta.yaml │ │ └── recipe.yaml ├── buildah-remote-oci-ta │ ├── 0.4 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah-remote-oci-ta.yaml │ │ └── migrations │ │ │ └── 0.4.1.sh │ └── 0.5 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── buildah-remote-oci-ta.yaml ├── buildah-remote │ ├── 0.4 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah-remote.yaml │ │ └── migrations │ │ │ └── 0.4.1.sh │ └── 0.5 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── buildah-remote.yaml ├── buildah │ ├── 0.4 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah.yaml │ │ ├── kustomization.yaml │ │ └── migrations │ │ │ └── 0.4.1.sh │ └── 0.5 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── buildah.yaml │ │ └── kustomization.yaml ├── clair-scan │ └── 0.1 │ │ ├── README.md │ │ └── clair-scan.yaml ├── clamav-scan │ └── 0.1 │ │ ├── README.md │ │ └── clamav-scan.yaml ├── coverity-availability-check-oci-ta │ ├── 0.1 │ │ ├── README.md │ │ ├── coverity-availability-check-oci-ta.yaml │ │ └── recipe.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── coverity-availability-check-oci-ta.yaml │ │ └── kustomization.yaml ├── coverity-availability-check │ └── 0.1 │ │ ├── README.md │ │ └── coverity-availability-check.yaml ├── deprecated-image-check │ ├── 0.1 │ │ ├── README.md │ │ └── deprecated-image-check.yaml │ ├── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── deprecated-image-check.yaml │ ├── 0.3 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── deprecated-image-check.yaml │ └── 0.4 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── deprecated-image-check.yaml ├── ecosystem-cert-preflight-checks │ └── 0.1 │ │ ├── README.md │ │ └── ecosystem-cert-preflight-checks.yaml ├── fbc-related-image-check │ ├── 0.1 │ │ ├── README.md │ │ ├── fbc-related-image-check.yaml │ │ └── kustomization.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── fbc-related-image-check.yaml │ │ └── kustomization.yaml ├── fbc-validation │ ├── 0.1 │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── USAGE.md │ │ ├── fbc-validation.yaml │ │ └── kustomization.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── fbc-validation.yaml │ │ └── kustomization.yaml ├── generate-odcs-compose │ ├── 0.1 │ │ ├── README.md │ │ ├── generate-odcs-compose.yaml │ │ └── kustomization.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── generate-odcs-compose.yaml │ │ └── kustomization.yaml ├── inspect-image │ ├── 0.1 │ │ ├── README.md │ │ ├── inspect-image.yaml │ │ └── kustomization.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── inspect-image.yaml │ │ └── kustomization.yaml ├── oci-copy-oci-ta │ └── 0.1 │ │ ├── README.md │ │ ├── oci-copy-oci-ta.yaml │ │ └── recipe.yaml ├── oci-copy │ └── 0.1 │ │ ├── README.md │ │ └── oci-copy.yaml ├── provision-env-with-ephemeral-namespace │ ├── 0.1 │ │ ├── README.md │ │ ├── kustomization.yaml │ │ └── provision-env-with-ephemeral-namespace.yaml │ └── OWNERS ├── rpms-signature-scan │ └── 0.1 │ │ ├── README.md │ │ └── rpms-signature-scan.yaml ├── sast-coverity-check-oci-ta │ ├── 0.1 │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── sast-coverity-check-oci-ta.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── sast-coverity-check-oci-ta.yaml ├── sast-coverity-check │ ├── 0.1 │ │ ├── README.md │ │ └── sast-coverity-check.yaml │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── kustomization.yaml │ │ ├── patch.yaml │ │ └── sast-coverity-check.yaml ├── sast-snyk-check-oci-ta │ ├── 0.1 │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── sast-snyk-check-oci-ta.yaml │ ├── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── sast-snyk-check-oci-ta.yaml │ └── 0.3 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── sast-snyk-check-oci-ta.yaml ├── sast-snyk-check │ ├── 0.1 │ │ ├── README.md │ │ └── sast-snyk-check.yaml │ ├── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── sast-snyk-check.yaml │ └── 0.3 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── sast-snyk-check.yaml │ │ └── tests │ │ ├── pre-apply-task-hook.sh │ │ └── test-sast-snyk-check-no-token.yaml ├── sast-unicode-check-oci-ta │ └── 0.1 │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── sast-unicode-check-oci-ta.yaml ├── sast-unicode-check │ └── 0.1 │ │ ├── README.md │ │ ├── sast-unicode-check.yaml │ │ └── tests │ │ └── test-sast-unicode-check.yaml ├── sbom-json-check │ └── 0.1 │ │ ├── README.md │ │ └── sbom-json-check.yaml ├── source-build-oci-ta │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── source-build-oci-ta.yaml ├── source-build │ └── 0.2 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ └── source-build.yaml ├── tkn-bundle-oci-ta │ └── 0.1 │ │ ├── README.md │ │ ├── recipe.yaml │ │ └── tkn-bundle-oci-ta.yaml ├── tkn-bundle │ └── 0.1 │ │ ├── .shellspec │ │ ├── README.md │ │ ├── TESTING.md │ │ ├── spec │ │ ├── spec_helper.sh │ │ ├── support │ │ │ ├── jq_matcher.sh │ │ │ └── task_run_subject.sh │ │ ├── test1.yaml │ │ ├── test2.yml │ │ ├── test3.yaml │ │ └── tkn-bundle_spec.sh │ │ └── tkn-bundle.yaml └── verify-signed-rpms │ └── 0.1 │ ├── README.md │ ├── kustomization.yaml │ └── verify-signed-rpms.yaml ├── external-task ├── clair-scan │ ├── 0.1 │ │ └── clair-scan.yaml │ └── 0.2 │ │ └── clair-scan.yaml ├── clamav-scan │ ├── 0.1 │ │ └── clamav-scan.yaml │ └── 0.2 │ │ └── clamav-scan.yaml ├── coverity-availability-check │ └── 0.2 │ │ └── coverity-availability-check.yaml ├── deprecated-image-check │ ├── 0.1 │ │ └── deprecated-image-check.yaml │ ├── 0.2 │ │ └── deprecated-image-check.yaml │ ├── 0.3 │ │ └── deprecated-image-check.yaml │ ├── 0.4 │ │ └── deprecated-image-check.yaml │ └── 0.5 │ │ └── deprecated-image-check.yaml ├── rpms-signature-scan │ └── 0.2 │ │ └── rpms-signature-scan.yaml ├── sast-coverity-check-oci-ta │ └── 0.3 │ │ └── sast-coverity-check-oci-ta.yaml ├── sast-coverity-check │ └── 0.3 │ │ └── sast-coverity-check.yaml ├── sast-shell-check-oci-ta │ └── 0.1 │ │ └── sast-shell-check-oci-ta.yaml ├── sast-shell-check │ └── 0.1 │ │ └── sast-shell-check.yaml ├── sast-snyk-check-oci-ta │ └── 0.4 │ │ └── sast-snyk-check-oci-ta.yaml ├── sast-snyk-check │ └── 0.4 │ │ └── sast-snyk-check.yaml ├── sast-unicode-check-oci-ta │ ├── 0.2 │ │ └── sast-unicode-check-oci-ta.yaml │ └── 0.3 │ │ └── sast-unicode-check-oci-ta.yaml └── sast-unicode-check │ ├── 0.2 │ └── sast-unicode-check.yaml │ └── 0.3 │ └── sast-unicode-check.yaml ├── hack ├── build-and-push.sh ├── build-manifests.sh ├── check-partner-tasks.sh ├── check-task-owners.sh ├── check-task-version-labels.sh ├── checkton-local.sh ├── create-task-migration.sh ├── ec-checks.sh ├── generate-all-readmes.sh ├── generate-build-team-readme.sh ├── generate-buildah-remote.sh ├── generate-everything.sh ├── generate-pipelines-readme.py ├── generate-readme.sh ├── generate-ta-tasks.sh ├── missing-ta-tasks.sh ├── shellspec │ └── github_formatter.sh ├── test-build.sh ├── test-build │ └── workspace-template.yaml ├── test-builds.sh ├── test-shellspec.sh ├── trusted-tasks-update.sh ├── update_renovate_json_based_on_codeowners.py ├── validate-migration.sh └── verify-manifests.sh ├── partners ├── README.md └── example-hello-world │ ├── 0.1 │ └── example-hello-world.yaml │ └── OWNERS ├── pipelines ├── core-services │ ├── README.md │ ├── core-services.yaml │ ├── infra-deploy.yaml │ ├── kustomization.yaml │ ├── patch.yaml │ ├── slack-notification.yaml │ └── update-repo.yaml ├── docker-build-multi-platform-oci-ta │ ├── README.md │ ├── docker-build-multi-platform-oci-ta.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── docker-build-oci-ta │ ├── README.md │ ├── docker-build-oci-ta.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── docker-build │ ├── README.md │ ├── docker-build.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── enterprise-contract.yaml ├── fbc-builder │ ├── README.md │ ├── fbc-builder.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── ko-build-oci-ta │ ├── README.md │ ├── ko-build-oci-ta.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── kustomization.yaml ├── maven-zip-build-oci-ta │ ├── README.md │ ├── kustomization.yaml │ ├── maven-zip-build-oci-ta.yaml │ └── patch.yaml ├── maven-zip-build │ ├── README.md │ ├── kustomization.yaml │ ├── maven-zip-build.yaml │ └── patch.yaml ├── prototypes │ ├── noop.yaml │ └── prototype-build-compliance.yaml ├── tekton-bundle-builder-oci-ta │ ├── README.md │ ├── kustomization.yaml │ ├── patch.yaml │ └── tekton-bundle-builder-oci-ta.yaml ├── tekton-bundle-builder │ ├── README.md │ ├── kustomization.yaml │ ├── patch.yaml │ └── tekton-bundle-builder.yaml └── template-build │ ├── kustomization.yaml │ └── template-build.yaml ├── policies ├── all-tasks.yaml ├── build-tasks.yaml └── step-actions.yaml ├── renovate.json ├── stepactions ├── eaas-copy-secrets-to-ephemeral-cluster │ └── 0.1 │ │ ├── README.md │ │ └── eaas-copy-secrets-to-ephemeral-cluster.yaml ├── eaas-create-ephemeral-cluster-hypershift-aws │ └── 0.1 │ │ ├── README.md │ │ └── eaas-create-ephemeral-cluster-hypershift-aws.yaml ├── eaas-get-ephemeral-cluster-credentials │ └── 0.1 │ │ ├── README.md │ │ └── eaas-get-ephemeral-cluster-credentials.yaml ├── eaas-get-latest-openshift-version-by-prefix │ └── 0.1 │ │ ├── README.md │ │ └── eaas-get-latest-openshift-version-by-prefix.yaml ├── eaas-get-supported-ephemeral-cluster-versions │ └── 0.1 │ │ ├── README.md │ │ └── eaas-get-supported-ephemeral-cluster-versions.yaml └── fips-operator-check-step-action │ └── 0.1 │ ├── README.md │ └── fips-operator-check-step-action.yaml ├── task-generator ├── README.md ├── remote │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go └── trusted-artifacts │ ├── README.md │ ├── expect.go │ ├── go.mod │ ├── go.sum │ ├── golden │ ├── buildah │ │ ├── base.yaml │ │ ├── recipe.yaml │ │ └── ta.yaml │ ├── git-clone │ │ ├── base.yaml │ │ ├── recipe.yaml │ │ └── ta.yaml │ ├── kustomized │ │ ├── kustomization.yaml │ │ ├── recipe.yaml │ │ ├── ta.yaml │ │ └── task.yaml │ ├── prefetch-dependencies │ │ ├── base.yaml │ │ ├── recipe.yaml │ │ └── ta.yaml │ ├── sast-snyk-check │ │ ├── base.yaml │ │ ├── recipe.yaml │ │ └── ta.yaml │ └── source-build │ │ ├── base.yaml │ │ ├── recipe.yaml │ │ └── ta.yaml │ ├── main.go │ ├── main_test.go │ ├── recipe.go │ ├── shell.go │ ├── ta.go │ └── tekton.go └── task ├── apply-tags ├── 0.1 │ ├── README.md │ └── apply-tags.yaml └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── apply-tags.yaml │ └── migrations │ ├── 0.2.1.sh │ └── 0.2.sh ├── build-helm-chart-oci-ta ├── 0.1 │ ├── README.md │ ├── build-helm-chart-oci-ta.yaml │ └── recipe.yaml ├── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── build-helm-chart-oci-ta.yaml └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ └── build-helm-chart-oci-ta.yaml ├── build-helm-chart └── 0.1 │ ├── README.md │ └── build-helm-chart.yaml ├── build-image-index ├── 0.1 │ ├── README.md │ ├── build-image-index.yaml │ └── kustomization.yaml └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── build-image-index.yaml │ └── kustomization.yaml ├── build-image-manifest └── 0.1 │ ├── README.md │ ├── build-image-manifest.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── build-maven-zip-oci-ta └── 0.1 │ ├── README.md │ ├── build-maven-zip-oci-ta.yaml │ └── recipe.yaml ├── build-maven-zip └── 0.1 │ ├── README.md │ ├── build-maven-zip.yaml │ └── kustomization.yaml ├── build-paketo-builder-oci-ta └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── build-paketo-builder-oci-ta.yaml ├── build-vm-image └── 0.1 │ ├── README.md │ └── build-vm-image.yaml ├── buildah-min ├── 0.4 ├── 0.5 ├── 0.6 │ ├── MIGRATION.md │ ├── README.md │ ├── buildah-min.yaml │ ├── kustomization.yaml │ └── patch.yaml └── 0.7 │ ├── MIGRATION.md │ ├── README.md │ ├── buildah-min.yaml │ ├── kustomization.yaml │ └── patch.yaml ├── buildah-oci-ta ├── 0.4 ├── 0.5 ├── 0.6 │ ├── MIGRATION.md │ ├── README.md │ ├── buildah-oci-ta.yaml │ └── recipe.yaml └── 0.7 │ ├── MIGRATION.md │ ├── README.md │ ├── buildah-oci-ta.yaml │ └── recipe.yaml ├── buildah-remote-oci-ta ├── 0.4 ├── 0.5 ├── 0.6 │ ├── MIGRATION.md │ ├── README.md │ └── buildah-remote-oci-ta.yaml └── 0.7 │ ├── MIGRATION.md │ ├── README.md │ └── buildah-remote-oci-ta.yaml ├── buildah-remote ├── 0.4 ├── 0.5 ├── 0.6 │ ├── MIGRATION.md │ ├── README.md │ └── buildah-remote.yaml └── 0.7 │ ├── MIGRATION.md │ ├── README.md │ └── buildah-remote.yaml ├── buildah ├── 0.4 ├── 0.5 ├── 0.6 │ ├── MIGRATION.md │ ├── README.md │ ├── buildah.yaml │ └── kustomization.yaml └── 0.7 │ ├── MIGRATION.md │ ├── README.md │ ├── buildah.yaml │ └── kustomization.yaml ├── clair-scan ├── 0.1 ├── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── clair-scan.yaml │ └── spec │ │ └── clair_scan_spec.sh └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── clair-scan.yaml │ ├── migrations │ └── 0.3.sh │ └── spec │ └── clair_scan_spec.sh ├── clamav-scan ├── 0.1 ├── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── clamav-scan.yaml └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── clamav-scan.yaml │ └── migrations │ └── 0.3.sh ├── coverity-availability-check ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── coverity-availability-check.yaml │ ├── kustomization.yaml │ └── tests │ └── test-coverity-availability-check.yaml ├── deprecated-image-check ├── 0.1 ├── 0.2 ├── 0.3 ├── 0.4 └── 0.5 │ ├── MIGRATION.md │ ├── README.md │ └── deprecated-image-check.yaml ├── eaas-provision-space └── 0.1 │ ├── README.md │ └── eaas-provision-space.yaml ├── ecosystem-cert-preflight-checks ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── ecosystem-cert-preflight-checks.yaml │ └── migrations │ └── 0.2.1.sh ├── fbc-fips-check-oci-ta └── 0.1 │ ├── README.md │ ├── fbc-fips-check-oci-ta.yaml │ └── recipe.yaml ├── fbc-fips-check └── 0.1 │ ├── README.md │ └── fbc-fips-check.yaml ├── fbc-target-index-pruning-check └── 0.1 │ ├── README.md │ └── fbc-target-index-pruning-check.yaml ├── fips-operator-bundle-check-oci-ta └── 0.1 │ ├── README.md │ ├── fips-operator-bundle-check-oci-ta.yaml │ └── recipe.yaml ├── fips-operator-bundle-check └── 0.1 │ ├── README.md │ └── fips-operator-bundle-check.yaml ├── generate-labels └── 0.1 │ ├── README.md │ └── generate-labels.yaml ├── git-clone-oci-ta └── 0.1 │ ├── README.md │ ├── git-clone-oci-ta.yaml │ ├── kustomization.yaml │ └── recipe.yaml ├── git-clone └── 0.1 │ ├── README.md │ ├── git-clone.yaml │ └── tests │ ├── test-git-clone-fail-for-wrong-url.yaml │ ├── test-git-clone-run-with-tag.yaml │ └── test-git-clone-run-without-args.yaml ├── init └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── init.yaml │ └── migrations │ ├── 0.2.1.sh │ ├── 0.2.2.sh │ └── 0.2.3.sh ├── ko-oci-ta └── 0.1 │ └── ko-oci-ta.yaml ├── modelcar-oci-ta └── 0.1 │ ├── README.md │ ├── modelcar-oci-ta.yaml │ └── tests │ ├── pre-apply-task-hook.sh │ ├── test-modelcar-oci-ta-alternative-arch.yaml │ ├── test-modelcar-oci-ta-floating-tag.yaml │ ├── test-modelcar-oci-ta-happy-path.yaml │ └── test-modelcar-oci-ta-without-remove-originals.yaml ├── oci-copy-oci-ta ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── oci-copy-oci-ta.yaml │ └── recipe.yaml ├── oci-copy ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── oci-copy.yaml ├── operator-sdk-generate-bundle └── 0.1 │ ├── README.md │ └── operator-sdk-generate-bundle.yaml ├── opm-get-bundle-version └── 0.1 │ ├── README.md │ └── opm-get-bundle-version.yaml ├── opm-render-bundles └── 0.1 │ ├── README.md │ └── opm-render-bundles.yaml ├── pnc-prebuild-git-clone-oci-ta └── 0.1 │ ├── README.md │ ├── kustomization.yaml │ ├── patch.yaml │ └── pnc-prebuild-git-clone-oci-ta.yaml ├── prefetch-dependencies-oci-ta └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── prefetch-dependencies-oci-ta.yaml │ └── recipe.yaml ├── prefetch-dependencies └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── prefetch-dependencies.yaml ├── push-dockerfile-oci-ta └── 0.1 │ ├── README.md │ ├── push-dockerfile-oci-ta.yaml │ └── recipe.yaml ├── push-dockerfile └── 0.1 │ ├── README.md │ └── push-dockerfile.yaml ├── rpms-signature-scan ├── 0.1 ├── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── rpms-signature-scan.yaml └── OWNERS ├── run-opm-command-oci-ta └── 0.1 │ ├── README.md │ └── run-opm-command-oci-ta.yaml ├── run-script-oci-ta └── 0.1 │ ├── README.md │ └── run-script-oci-ta.yaml ├── sast-coverity-check-oci-ta ├── 0.1 ├── 0.2 └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.3.sh │ ├── recipe.yaml │ └── sast-coverity-check-oci-ta.yaml ├── sast-coverity-check ├── 0.1 ├── 0.2 └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── kustomization.yaml │ ├── migrations │ └── 0.3.sh │ ├── patch.yaml │ └── sast-coverity-check.yaml ├── sast-shell-check-oci-ta └── 0.1 │ ├── README.md │ ├── recipe.yaml │ └── sast-shell-check-oci-ta.yaml ├── sast-shell-check └── 0.1 │ ├── README.md │ ├── sast-shell-check.yaml │ └── tests │ ├── test-sast-shell-check-bad-kfp-repo.yaml │ └── test-sast-shell-check.yaml ├── sast-snyk-check-oci-ta ├── 0.1 ├── 0.2 ├── 0.3 └── 0.4 │ ├── MIGRATION.md │ ├── README.md │ ├── recipe.yaml │ └── sast-snyk-check-oci-ta.yaml ├── sast-snyk-check ├── 0.1 ├── 0.2 ├── 0.3 └── 0.4 │ ├── MIGRATION.md │ ├── README.md │ ├── sast-snyk-check.yaml │ └── tests │ ├── pre-apply-task-hook.sh │ └── test-sast-snyk-check-no-token.yaml ├── sast-unicode-check-oci-ta ├── 0.1 ├── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── recipe.yaml │ └── sast-unicode-check-oci-ta.yaml └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.3.sh │ ├── recipe.yaml │ └── sast-unicode-check-oci-ta.yaml ├── sast-unicode-check ├── 0.1 ├── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── sast-unicode-check.yaml │ └── tests │ │ └── test-sast-unicode-check.yaml └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.3.sh │ ├── sast-unicode-check.yaml │ └── tests │ ├── test-sast-unicode-check-bad-kfp-repo.yaml │ └── test-sast-unicode-check.yaml ├── sbom-json-check ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── sbom-json-check.yaml ├── sealights-go-oci-ta └── 0.1 │ ├── README.md │ ├── kustomization.yaml │ └── sealights-go-oci-ta.yaml ├── sealights-nodejs-oci-ta └── 0.1 │ ├── README.md │ ├── kustomization.yaml │ └── sealights-nodejs-oci-ta.yaml ├── sealights-python-oci-ta └── 0.1 │ ├── README.md │ ├── kustomization.yaml │ └── sealights-python-oci-ta.yaml ├── show-sbom └── 0.1 │ ├── README.md │ └── show-sbom.yaml ├── slack-webhook-notification-oci-ta └── 0.1 │ ├── README.md │ ├── recipe.yaml │ └── slack-webhook-notification-oci-ta.yaml ├── slack-webhook-notification └── 0.1 │ ├── README.md │ └── slack-webhook-notification.yaml ├── source-build-oci-ta ├── 0.2 └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.3.sh │ ├── recipe.yaml │ └── source-build-oci-ta.yaml ├── source-build ├── 0.2 └── 0.3 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.3.sh │ └── source-build.yaml ├── summary └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ └── summary.yaml ├── tkn-bundle-oci-ta ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.2.1.sh │ ├── recipe.yaml │ └── tkn-bundle-oci-ta.yaml ├── tkn-bundle ├── 0.1 └── 0.2 │ ├── MIGRATION.md │ ├── README.md │ ├── migrations │ └── 0.2.1.sh │ └── tkn-bundle.yaml ├── update-infra-deployments └── 0.1 │ ├── README.md │ └── update-infra-deployments.yaml ├── validate-fbc └── 0.1 │ ├── README.md │ ├── TROUBLESHOOTING.md │ ├── USAGE.md │ └── validate-fbc.yaml ├── verify-enterprise-contract └── 0.1 │ ├── README.md │ ├── kustomization.yaml │ └── verify-enterprise-contract.yaml └── verify-source └── 0.1 ├── README.md ├── tests ├── test-verify-source-no-vsa.yaml └── test-verify-source-with-vsa.yaml └── verify-source.yaml /.cursor/rules/basic.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.cursor/rules/basic.mdc -------------------------------------------------------------------------------- /.cursor/rules/git.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.cursor/rules/git.mdc -------------------------------------------------------------------------------- /.cursor/rules/tekton.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.cursor/rules/tekton.mdc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/install-tkn/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/actions/install-tkn/action.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/resources/workspace-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/resources/workspace-template.yaml -------------------------------------------------------------------------------- /.github/scripts/check_task_and_pipeline_yamls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/scripts/check_task_and_pipeline_yamls.sh -------------------------------------------------------------------------------- /.github/scripts/test_tekton_tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/scripts/test_tekton_tasks.sh -------------------------------------------------------------------------------- /.github/workflows/check-buildah-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-buildah-remote.yaml -------------------------------------------------------------------------------- /.github/workflows/check-kustomize-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-kustomize-build.yaml -------------------------------------------------------------------------------- /.github/workflows/check-readmes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-readmes.yaml -------------------------------------------------------------------------------- /.github/workflows/check-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-ta.yaml -------------------------------------------------------------------------------- /.github/workflows/check-task-and-pipeline-yamls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-task-and-pipeline-yamls.yaml -------------------------------------------------------------------------------- /.github/workflows/check-task-migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-task-migration.yaml -------------------------------------------------------------------------------- /.github/workflows/check-task-owners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/check-task-owners.yaml -------------------------------------------------------------------------------- /.github/workflows/checkton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/checkton.yaml -------------------------------------------------------------------------------- /.github/workflows/go-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/go-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/run-task-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/run-task-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.github/workflows/yaml-lint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /.tekton/pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/pull-request.yaml -------------------------------------------------------------------------------- /.tekton/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/push.yaml -------------------------------------------------------------------------------- /.tekton/scripts/build-acceptable-bundles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/scripts/build-acceptable-bundles.sh -------------------------------------------------------------------------------- /.tekton/scripts/create-task-pipeline-bundle-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/scripts/create-task-pipeline-bundle-repos.sh -------------------------------------------------------------------------------- /.tekton/scripts/determine-if-e2e-execution-needed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/scripts/determine-if-e2e-execution-needed.py -------------------------------------------------------------------------------- /.tekton/scripts/github-update-comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/scripts/github-update-comment.py -------------------------------------------------------------------------------- /.tekton/scripts/validate-bundle-sanity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/scripts/validate-bundle-sanity.sh -------------------------------------------------------------------------------- /.tekton/tasks/buildah.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/tasks/buildah.yaml -------------------------------------------------------------------------------- /.tekton/tasks/e2e-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/tasks/e2e-test.yaml -------------------------------------------------------------------------------- /.tekton/tasks/ec-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/tasks/ec-checks.yaml -------------------------------------------------------------------------------- /.tekton/tasks/task-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/tasks/task-lint.yaml -------------------------------------------------------------------------------- /.tekton/tasks/task-switchboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.tekton/tasks/task-switchboard.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/.yamllint -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/README.md -------------------------------------------------------------------------------- /appstudio-utils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/appstudio-utils/Dockerfile -------------------------------------------------------------------------------- /appstudio-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/appstudio-utils/README.md -------------------------------------------------------------------------------- /appstudio-utils/util-scripts/cleanup-build-directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/appstudio-utils/util-scripts/cleanup-build-directories.sh -------------------------------------------------------------------------------- /appstudio-utils/util-scripts/select-oci-auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/appstudio-utils/util-scripts/select-oci-auth.sh -------------------------------------------------------------------------------- /archived-tasks/build-paketo-builder-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/build-paketo-builder-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/build-paketo-builder-oci-ta/0.1/build-paketo-builder-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/build-paketo-builder-oci-ta/0.1/build-paketo-builder-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.4/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.4/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.4/buildah-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.4/buildah-min.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.4/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.4/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.4/migrations/0.4.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.4/migrations/0.4.1.sh -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.4/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.4/patch.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.5/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.5/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.5/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.5/buildah-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.5/buildah-min.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.5/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.5/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-min/0.5/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-min/0.5/patch.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.4/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.4/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.4/buildah-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.4/buildah-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.4/migrations/0.4.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.4/migrations/0.4.1.sh -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.4/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.4/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.5/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.5/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.5/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.5/buildah-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.5/buildah-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-oci-ta/0.5/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-oci-ta/0.5/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.4/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.4/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.4/buildah-remote-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.4/buildah-remote-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.4/migrations/0.4.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.4/migrations/0.4.1.sh -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.5/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.5/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.5/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote-oci-ta/0.5/buildah-remote-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote-oci-ta/0.5/buildah-remote-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.4/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.4/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.4/buildah-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.4/buildah-remote.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.4/migrations/0.4.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.4/migrations/0.4.1.sh -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.5/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.5/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.5/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah-remote/0.5/buildah-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah-remote/0.5/buildah-remote.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.4/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.4/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah/0.4/buildah.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.4/buildah.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah/0.4/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.4/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah/0.4/migrations/0.4.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.4/migrations/0.4.1.sh -------------------------------------------------------------------------------- /archived-tasks/buildah/0.5/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.5/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/buildah/0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.5/README.md -------------------------------------------------------------------------------- /archived-tasks/buildah/0.5/buildah.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.5/buildah.yaml -------------------------------------------------------------------------------- /archived-tasks/buildah/0.5/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/buildah/0.5/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/clair-scan/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/clair-scan/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/clair-scan/0.1/clair-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/clair-scan/0.1/clair-scan.yaml -------------------------------------------------------------------------------- /archived-tasks/clamav-scan/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/clamav-scan/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/clamav-scan/0.1/clamav-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/clamav-scan/0.1/clamav-scan.yaml -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.1/coverity-availability-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.1/coverity-availability-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.2/coverity-availability-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.2/coverity-availability-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check-oci-ta/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check-oci-ta/0.2/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/coverity-availability-check/0.1/coverity-availability-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/coverity-availability-check/0.1/coverity-availability-check.yaml -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.1/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.1/deprecated-image-check.yaml -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.2/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.2/deprecated-image-check.yaml -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.3/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.3/README.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.3/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.3/deprecated-image-check.yaml -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.4/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.4/README.md -------------------------------------------------------------------------------- /archived-tasks/deprecated-image-check/0.4/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/deprecated-image-check/0.4/deprecated-image-check.yaml -------------------------------------------------------------------------------- /archived-tasks/ecosystem-cert-preflight-checks/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/ecosystem-cert-preflight-checks/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/ecosystem-cert-preflight-checks/0.1/ecosystem-cert-preflight-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/ecosystem-cert-preflight-checks/0.1/ecosystem-cert-preflight-checks.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.1/fbc-related-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.1/fbc-related-image-check.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.1/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.2/fbc-related-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.2/fbc-related-image-check.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-related-image-check/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-related-image-check/0.2/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.1/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.1/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.1/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.1/USAGE.md -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.1/fbc-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.1/fbc-validation.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.1/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.2/fbc-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.2/fbc-validation.yaml -------------------------------------------------------------------------------- /archived-tasks/fbc-validation/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/fbc-validation/0.2/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.1/generate-odcs-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.1/generate-odcs-compose.yaml -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.1/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.2/generate-odcs-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.2/generate-odcs-compose.yaml -------------------------------------------------------------------------------- /archived-tasks/generate-odcs-compose/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/generate-odcs-compose/0.2/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.1/inspect-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.1/inspect-image.yaml -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.1/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.2/inspect-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.2/inspect-image.yaml -------------------------------------------------------------------------------- /archived-tasks/inspect-image/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/inspect-image/0.2/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/oci-copy-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/oci-copy-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/oci-copy-oci-ta/0.1/oci-copy-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/oci-copy-oci-ta/0.1/oci-copy-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/oci-copy-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/oci-copy-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/oci-copy/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/oci-copy/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/oci-copy/0.1/oci-copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/oci-copy/0.1/oci-copy.yaml -------------------------------------------------------------------------------- /archived-tasks/provision-env-with-ephemeral-namespace/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/provision-env-with-ephemeral-namespace/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/provision-env-with-ephemeral-namespace/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/provision-env-with-ephemeral-namespace/0.1/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/provision-env-with-ephemeral-namespace/0.1/provision-env-with-ephemeral-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/provision-env-with-ephemeral-namespace/0.1/provision-env-with-ephemeral-namespace.yaml -------------------------------------------------------------------------------- /archived-tasks/provision-env-with-ephemeral-namespace/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/provision-env-with-ephemeral-namespace/OWNERS -------------------------------------------------------------------------------- /archived-tasks/rpms-signature-scan/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/rpms-signature-scan/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/rpms-signature-scan/0.1/rpms-signature-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/rpms-signature-scan/0.1/rpms-signature-scan.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.1/sast-coverity-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.1/sast-coverity-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check-oci-ta/0.2/sast-coverity-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check-oci-ta/0.2/sast-coverity-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.1/sast-coverity-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.1/sast-coverity-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.2/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.2/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.2/patch.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-coverity-check/0.2/sast-coverity-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-coverity-check/0.2/sast-coverity-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.1/sast-snyk-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.1/sast-snyk-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.2/sast-snyk-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.2/sast-snyk-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.3/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.3/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.3/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.3/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check-oci-ta/0.3/sast-snyk-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check-oci-ta/0.3/sast-snyk-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.1/sast-snyk-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.1/sast-snyk-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.2/sast-snyk-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.2/sast-snyk-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.3/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.3/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.3/sast-snyk-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.3/sast-snyk-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.3/tests/pre-apply-task-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.3/tests/pre-apply-task-hook.sh -------------------------------------------------------------------------------- /archived-tasks/sast-snyk-check/0.3/tests/test-sast-snyk-check-no-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-snyk-check/0.3/tests/test-sast-snyk-check-no-token.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-unicode-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-unicode-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-unicode-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-unicode-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-unicode-check-oci-ta/0.1/sast-unicode-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-unicode-check-oci-ta/0.1/sast-unicode-check-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-unicode-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-unicode-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sast-unicode-check/0.1/sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-unicode-check/0.1/sast-unicode-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sast-unicode-check/0.1/tests/test-sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sast-unicode-check/0.1/tests/test-sast-unicode-check.yaml -------------------------------------------------------------------------------- /archived-tasks/sbom-json-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sbom-json-check/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/sbom-json-check/0.1/sbom-json-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/sbom-json-check/0.1/sbom-json-check.yaml -------------------------------------------------------------------------------- /archived-tasks/source-build-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/source-build-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/source-build-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/source-build-oci-ta/0.2/source-build-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build-oci-ta/0.2/source-build-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/source-build/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build/0.2/MIGRATION.md -------------------------------------------------------------------------------- /archived-tasks/source-build/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build/0.2/README.md -------------------------------------------------------------------------------- /archived-tasks/source-build/0.2/source-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/source-build/0.2/source-build.yaml -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle-oci-ta/0.1/tkn-bundle-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle-oci-ta/0.1/tkn-bundle-oci-ta.yaml -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/.shellspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/TESTING.md -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/spec_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/spec_helper.sh -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/support/jq_matcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/support/jq_matcher.sh -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/support/task_run_subject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/support/task_run_subject.sh -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/test1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/test1.yaml -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/test2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/test2.yml -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/test3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/test3.yaml -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/spec/tkn-bundle_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/spec/tkn-bundle_spec.sh -------------------------------------------------------------------------------- /archived-tasks/tkn-bundle/0.1/tkn-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/tkn-bundle/0.1/tkn-bundle.yaml -------------------------------------------------------------------------------- /archived-tasks/verify-signed-rpms/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/verify-signed-rpms/0.1/README.md -------------------------------------------------------------------------------- /archived-tasks/verify-signed-rpms/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/verify-signed-rpms/0.1/kustomization.yaml -------------------------------------------------------------------------------- /archived-tasks/verify-signed-rpms/0.1/verify-signed-rpms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/archived-tasks/verify-signed-rpms/0.1/verify-signed-rpms.yaml -------------------------------------------------------------------------------- /external-task/clair-scan/0.1/clair-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/clair-scan/0.1/clair-scan.yaml -------------------------------------------------------------------------------- /external-task/clair-scan/0.2/clair-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/clair-scan/0.2/clair-scan.yaml -------------------------------------------------------------------------------- /external-task/clamav-scan/0.1/clamav-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/clamav-scan/0.1/clamav-scan.yaml -------------------------------------------------------------------------------- /external-task/clamav-scan/0.2/clamav-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/clamav-scan/0.2/clamav-scan.yaml -------------------------------------------------------------------------------- /external-task/coverity-availability-check/0.2/coverity-availability-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/coverity-availability-check/0.2/coverity-availability-check.yaml -------------------------------------------------------------------------------- /external-task/deprecated-image-check/0.1/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/deprecated-image-check/0.1/deprecated-image-check.yaml -------------------------------------------------------------------------------- /external-task/deprecated-image-check/0.2/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/deprecated-image-check/0.2/deprecated-image-check.yaml -------------------------------------------------------------------------------- /external-task/deprecated-image-check/0.3/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/deprecated-image-check/0.3/deprecated-image-check.yaml -------------------------------------------------------------------------------- /external-task/deprecated-image-check/0.4/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/deprecated-image-check/0.4/deprecated-image-check.yaml -------------------------------------------------------------------------------- /external-task/deprecated-image-check/0.5/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/deprecated-image-check/0.5/deprecated-image-check.yaml -------------------------------------------------------------------------------- /external-task/rpms-signature-scan/0.2/rpms-signature-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/rpms-signature-scan/0.2/rpms-signature-scan.yaml -------------------------------------------------------------------------------- /external-task/sast-coverity-check-oci-ta/0.3/sast-coverity-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-coverity-check-oci-ta/0.3/sast-coverity-check-oci-ta.yaml -------------------------------------------------------------------------------- /external-task/sast-coverity-check/0.3/sast-coverity-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-coverity-check/0.3/sast-coverity-check.yaml -------------------------------------------------------------------------------- /external-task/sast-shell-check-oci-ta/0.1/sast-shell-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-shell-check-oci-ta/0.1/sast-shell-check-oci-ta.yaml -------------------------------------------------------------------------------- /external-task/sast-shell-check/0.1/sast-shell-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-shell-check/0.1/sast-shell-check.yaml -------------------------------------------------------------------------------- /external-task/sast-snyk-check-oci-ta/0.4/sast-snyk-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-snyk-check-oci-ta/0.4/sast-snyk-check-oci-ta.yaml -------------------------------------------------------------------------------- /external-task/sast-snyk-check/0.4/sast-snyk-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-snyk-check/0.4/sast-snyk-check.yaml -------------------------------------------------------------------------------- /external-task/sast-unicode-check-oci-ta/0.2/sast-unicode-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-unicode-check-oci-ta/0.2/sast-unicode-check-oci-ta.yaml -------------------------------------------------------------------------------- /external-task/sast-unicode-check-oci-ta/0.3/sast-unicode-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-unicode-check-oci-ta/0.3/sast-unicode-check-oci-ta.yaml -------------------------------------------------------------------------------- /external-task/sast-unicode-check/0.2/sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-unicode-check/0.2/sast-unicode-check.yaml -------------------------------------------------------------------------------- /external-task/sast-unicode-check/0.3/sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/external-task/sast-unicode-check/0.3/sast-unicode-check.yaml -------------------------------------------------------------------------------- /hack/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/build-and-push.sh -------------------------------------------------------------------------------- /hack/build-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/build-manifests.sh -------------------------------------------------------------------------------- /hack/check-partner-tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/check-partner-tasks.sh -------------------------------------------------------------------------------- /hack/check-task-owners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/check-task-owners.sh -------------------------------------------------------------------------------- /hack/check-task-version-labels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/check-task-version-labels.sh -------------------------------------------------------------------------------- /hack/checkton-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/checkton-local.sh -------------------------------------------------------------------------------- /hack/create-task-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/create-task-migration.sh -------------------------------------------------------------------------------- /hack/ec-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/ec-checks.sh -------------------------------------------------------------------------------- /hack/generate-all-readmes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-all-readmes.sh -------------------------------------------------------------------------------- /hack/generate-build-team-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-build-team-readme.sh -------------------------------------------------------------------------------- /hack/generate-buildah-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-buildah-remote.sh -------------------------------------------------------------------------------- /hack/generate-everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-everything.sh -------------------------------------------------------------------------------- /hack/generate-pipelines-readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-pipelines-readme.py -------------------------------------------------------------------------------- /hack/generate-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-readme.sh -------------------------------------------------------------------------------- /hack/generate-ta-tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/generate-ta-tasks.sh -------------------------------------------------------------------------------- /hack/missing-ta-tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/missing-ta-tasks.sh -------------------------------------------------------------------------------- /hack/shellspec/github_formatter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/shellspec/github_formatter.sh -------------------------------------------------------------------------------- /hack/test-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/test-build.sh -------------------------------------------------------------------------------- /hack/test-build/workspace-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/test-build/workspace-template.yaml -------------------------------------------------------------------------------- /hack/test-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/test-builds.sh -------------------------------------------------------------------------------- /hack/test-shellspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/test-shellspec.sh -------------------------------------------------------------------------------- /hack/trusted-tasks-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/trusted-tasks-update.sh -------------------------------------------------------------------------------- /hack/update_renovate_json_based_on_codeowners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/update_renovate_json_based_on_codeowners.py -------------------------------------------------------------------------------- /hack/validate-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/validate-migration.sh -------------------------------------------------------------------------------- /hack/verify-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/hack/verify-manifests.sh -------------------------------------------------------------------------------- /partners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/partners/README.md -------------------------------------------------------------------------------- /partners/example-hello-world/0.1/example-hello-world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/partners/example-hello-world/0.1/example-hello-world.yaml -------------------------------------------------------------------------------- /partners/example-hello-world/OWNERS: -------------------------------------------------------------------------------- 1 | RHTAP Build team 2 | -------------------------------------------------------------------------------- /pipelines/core-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/README.md -------------------------------------------------------------------------------- /pipelines/core-services/core-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/core-services.yaml -------------------------------------------------------------------------------- /pipelines/core-services/infra-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/infra-deploy.yaml -------------------------------------------------------------------------------- /pipelines/core-services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/core-services/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/patch.yaml -------------------------------------------------------------------------------- /pipelines/core-services/slack-notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/slack-notification.yaml -------------------------------------------------------------------------------- /pipelines/core-services/update-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/core-services/update-repo.yaml -------------------------------------------------------------------------------- /pipelines/docker-build-multi-platform-oci-ta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-multi-platform-oci-ta/README.md -------------------------------------------------------------------------------- /pipelines/docker-build-multi-platform-oci-ta/docker-build-multi-platform-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-multi-platform-oci-ta/docker-build-multi-platform-oci-ta.yaml -------------------------------------------------------------------------------- /pipelines/docker-build-multi-platform-oci-ta/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-multi-platform-oci-ta/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/docker-build-multi-platform-oci-ta/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-multi-platform-oci-ta/patch.yaml -------------------------------------------------------------------------------- /pipelines/docker-build-oci-ta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-oci-ta/README.md -------------------------------------------------------------------------------- /pipelines/docker-build-oci-ta/docker-build-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-oci-ta/docker-build-oci-ta.yaml -------------------------------------------------------------------------------- /pipelines/docker-build-oci-ta/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-oci-ta/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/docker-build-oci-ta/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build-oci-ta/patch.yaml -------------------------------------------------------------------------------- /pipelines/docker-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build/README.md -------------------------------------------------------------------------------- /pipelines/docker-build/docker-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build/docker-build.yaml -------------------------------------------------------------------------------- /pipelines/docker-build/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/docker-build/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/docker-build/patch.yaml -------------------------------------------------------------------------------- /pipelines/enterprise-contract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/enterprise-contract.yaml -------------------------------------------------------------------------------- /pipelines/fbc-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/fbc-builder/README.md -------------------------------------------------------------------------------- /pipelines/fbc-builder/fbc-builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/fbc-builder/fbc-builder.yaml -------------------------------------------------------------------------------- /pipelines/fbc-builder/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/fbc-builder/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/fbc-builder/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/fbc-builder/patch.yaml -------------------------------------------------------------------------------- /pipelines/ko-build-oci-ta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/ko-build-oci-ta/README.md -------------------------------------------------------------------------------- /pipelines/ko-build-oci-ta/ko-build-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/ko-build-oci-ta/ko-build-oci-ta.yaml -------------------------------------------------------------------------------- /pipelines/ko-build-oci-ta/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/ko-build-oci-ta/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/ko-build-oci-ta/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/ko-build-oci-ta/patch.yaml -------------------------------------------------------------------------------- /pipelines/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/maven-zip-build-oci-ta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build-oci-ta/README.md -------------------------------------------------------------------------------- /pipelines/maven-zip-build-oci-ta/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build-oci-ta/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/maven-zip-build-oci-ta/maven-zip-build-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build-oci-ta/maven-zip-build-oci-ta.yaml -------------------------------------------------------------------------------- /pipelines/maven-zip-build-oci-ta/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build-oci-ta/patch.yaml -------------------------------------------------------------------------------- /pipelines/maven-zip-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build/README.md -------------------------------------------------------------------------------- /pipelines/maven-zip-build/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/maven-zip-build/maven-zip-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build/maven-zip-build.yaml -------------------------------------------------------------------------------- /pipelines/maven-zip-build/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/maven-zip-build/patch.yaml -------------------------------------------------------------------------------- /pipelines/prototypes/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/prototypes/noop.yaml -------------------------------------------------------------------------------- /pipelines/prototypes/prototype-build-compliance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/prototypes/prototype-build-compliance.yaml -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder-oci-ta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder-oci-ta/README.md -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder-oci-ta/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder-oci-ta/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder-oci-ta/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder-oci-ta/patch.yaml -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder-oci-ta/tekton-bundle-builder-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder-oci-ta/tekton-bundle-builder-oci-ta.yaml -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder/README.md -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder/patch.yaml -------------------------------------------------------------------------------- /pipelines/tekton-bundle-builder/tekton-bundle-builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/tekton-bundle-builder/tekton-bundle-builder.yaml -------------------------------------------------------------------------------- /pipelines/template-build/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/template-build/kustomization.yaml -------------------------------------------------------------------------------- /pipelines/template-build/template-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/pipelines/template-build/template-build.yaml -------------------------------------------------------------------------------- /policies/all-tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/policies/all-tasks.yaml -------------------------------------------------------------------------------- /policies/build-tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/policies/build-tasks.yaml -------------------------------------------------------------------------------- /policies/step-actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/policies/step-actions.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/renovate.json -------------------------------------------------------------------------------- /stepactions/eaas-copy-secrets-to-ephemeral-cluster/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-copy-secrets-to-ephemeral-cluster/0.1/README.md -------------------------------------------------------------------------------- /stepactions/eaas-copy-secrets-to-ephemeral-cluster/0.1/eaas-copy-secrets-to-ephemeral-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-copy-secrets-to-ephemeral-cluster/0.1/eaas-copy-secrets-to-ephemeral-cluster.yaml -------------------------------------------------------------------------------- /stepactions/eaas-create-ephemeral-cluster-hypershift-aws/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-create-ephemeral-cluster-hypershift-aws/0.1/README.md -------------------------------------------------------------------------------- /stepactions/eaas-create-ephemeral-cluster-hypershift-aws/0.1/eaas-create-ephemeral-cluster-hypershift-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-create-ephemeral-cluster-hypershift-aws/0.1/eaas-create-ephemeral-cluster-hypershift-aws.yaml -------------------------------------------------------------------------------- /stepactions/eaas-get-ephemeral-cluster-credentials/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-get-ephemeral-cluster-credentials/0.1/README.md -------------------------------------------------------------------------------- /stepactions/eaas-get-ephemeral-cluster-credentials/0.1/eaas-get-ephemeral-cluster-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-get-ephemeral-cluster-credentials/0.1/eaas-get-ephemeral-cluster-credentials.yaml -------------------------------------------------------------------------------- /stepactions/eaas-get-latest-openshift-version-by-prefix/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-get-latest-openshift-version-by-prefix/0.1/README.md -------------------------------------------------------------------------------- /stepactions/eaas-get-latest-openshift-version-by-prefix/0.1/eaas-get-latest-openshift-version-by-prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-get-latest-openshift-version-by-prefix/0.1/eaas-get-latest-openshift-version-by-prefix.yaml -------------------------------------------------------------------------------- /stepactions/eaas-get-supported-ephemeral-cluster-versions/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-get-supported-ephemeral-cluster-versions/0.1/README.md -------------------------------------------------------------------------------- /stepactions/eaas-get-supported-ephemeral-cluster-versions/0.1/eaas-get-supported-ephemeral-cluster-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/eaas-get-supported-ephemeral-cluster-versions/0.1/eaas-get-supported-ephemeral-cluster-versions.yaml -------------------------------------------------------------------------------- /stepactions/fips-operator-check-step-action/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/fips-operator-check-step-action/0.1/README.md -------------------------------------------------------------------------------- /stepactions/fips-operator-check-step-action/0.1/fips-operator-check-step-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/stepactions/fips-operator-check-step-action/0.1/fips-operator-check-step-action.yaml -------------------------------------------------------------------------------- /task-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/README.md -------------------------------------------------------------------------------- /task-generator/remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/remote/README.md -------------------------------------------------------------------------------- /task-generator/remote/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/remote/go.mod -------------------------------------------------------------------------------- /task-generator/remote/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/remote/go.sum -------------------------------------------------------------------------------- /task-generator/remote/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/remote/main.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/README.md -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/expect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/expect.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/go.mod -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/go.sum -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/buildah/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/buildah/base.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/buildah/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/buildah/recipe.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/buildah/ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/buildah/ta.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/git-clone/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/git-clone/base.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/git-clone/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/git-clone/recipe.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/git-clone/ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/git-clone/ta.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/kustomized/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/kustomized/kustomization.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/kustomized/recipe.yaml: -------------------------------------------------------------------------------- 1 | ../buildah/recipe.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/kustomized/ta.yaml: -------------------------------------------------------------------------------- 1 | ../buildah/ta.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/kustomized/task.yaml: -------------------------------------------------------------------------------- 1 | ../buildah/base.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/prefetch-dependencies/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/prefetch-dependencies/base.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/prefetch-dependencies/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/prefetch-dependencies/recipe.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/prefetch-dependencies/ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/prefetch-dependencies/ta.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/sast-snyk-check/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/sast-snyk-check/base.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/sast-snyk-check/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/sast-snyk-check/recipe.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/sast-snyk-check/ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/sast-snyk-check/ta.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/source-build/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/source-build/base.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/source-build/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/source-build/recipe.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/golden/source-build/ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/golden/source-build/ta.yaml -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/main.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/main_test.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/recipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/recipe.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/shell.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/ta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/ta.go -------------------------------------------------------------------------------- /task-generator/trusted-artifacts/tekton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task-generator/trusted-artifacts/tekton.go -------------------------------------------------------------------------------- /task/apply-tags/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.1/README.md -------------------------------------------------------------------------------- /task/apply-tags/0.1/apply-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.1/apply-tags.yaml -------------------------------------------------------------------------------- /task/apply-tags/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/apply-tags/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.2/README.md -------------------------------------------------------------------------------- /task/apply-tags/0.2/apply-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.2/apply-tags.yaml -------------------------------------------------------------------------------- /task/apply-tags/0.2/migrations/0.2.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.2/migrations/0.2.1.sh -------------------------------------------------------------------------------- /task/apply-tags/0.2/migrations/0.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/apply-tags/0.2/migrations/0.2.sh -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.1/build-helm-chart-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.1/build-helm-chart-oci-ta.yaml -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.2/build-helm-chart-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.2/build-helm-chart-oci-ta.yaml -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.3/README.md -------------------------------------------------------------------------------- /task/build-helm-chart-oci-ta/0.3/build-helm-chart-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart-oci-ta/0.3/build-helm-chart-oci-ta.yaml -------------------------------------------------------------------------------- /task/build-helm-chart/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart/0.1/README.md -------------------------------------------------------------------------------- /task/build-helm-chart/0.1/build-helm-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-helm-chart/0.1/build-helm-chart.yaml -------------------------------------------------------------------------------- /task/build-image-index/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.1/README.md -------------------------------------------------------------------------------- /task/build-image-index/0.1/build-image-index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.1/build-image-index.yaml -------------------------------------------------------------------------------- /task/build-image-index/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/build-image-index/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/build-image-index/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.2/README.md -------------------------------------------------------------------------------- /task/build-image-index/0.2/build-image-index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.2/build-image-index.yaml -------------------------------------------------------------------------------- /task/build-image-index/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-index/0.2/kustomization.yaml -------------------------------------------------------------------------------- /task/build-image-manifest/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-manifest/0.1/README.md -------------------------------------------------------------------------------- /task/build-image-manifest/0.1/build-image-manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-manifest/0.1/build-image-manifest.yaml -------------------------------------------------------------------------------- /task/build-image-manifest/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-manifest/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/build-image-manifest/0.1/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-image-manifest/0.1/patch.yaml -------------------------------------------------------------------------------- /task/build-maven-zip-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-maven-zip-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/build-maven-zip-oci-ta/0.1/build-maven-zip-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-maven-zip-oci-ta/0.1/build-maven-zip-oci-ta.yaml -------------------------------------------------------------------------------- /task/build-maven-zip-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-maven-zip-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/build-maven-zip/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-maven-zip/0.1/README.md -------------------------------------------------------------------------------- /task/build-maven-zip/0.1/build-maven-zip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-maven-zip/0.1/build-maven-zip.yaml -------------------------------------------------------------------------------- /task/build-maven-zip/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-maven-zip/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/build-paketo-builder-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-paketo-builder-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/build-paketo-builder-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-paketo-builder-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /task/build-paketo-builder-oci-ta/0.2/build-paketo-builder-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-paketo-builder-oci-ta/0.2/build-paketo-builder-oci-ta.yaml -------------------------------------------------------------------------------- /task/build-vm-image/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-vm-image/0.1/README.md -------------------------------------------------------------------------------- /task/build-vm-image/0.1/build-vm-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/build-vm-image/0.1/build-vm-image.yaml -------------------------------------------------------------------------------- /task/buildah-min/0.4: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-min/0.4 -------------------------------------------------------------------------------- /task/buildah-min/0.5: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-min/0.5 -------------------------------------------------------------------------------- /task/buildah-min/0.6/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.6/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-min/0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.6/README.md -------------------------------------------------------------------------------- /task/buildah-min/0.6/buildah-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.6/buildah-min.yaml -------------------------------------------------------------------------------- /task/buildah-min/0.6/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.6/kustomization.yaml -------------------------------------------------------------------------------- /task/buildah-min/0.6/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.6/patch.yaml -------------------------------------------------------------------------------- /task/buildah-min/0.7/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.7/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-min/0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.7/README.md -------------------------------------------------------------------------------- /task/buildah-min/0.7/buildah-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.7/buildah-min.yaml -------------------------------------------------------------------------------- /task/buildah-min/0.7/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.7/kustomization.yaml -------------------------------------------------------------------------------- /task/buildah-min/0.7/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-min/0.7/patch.yaml -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.4: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-oci-ta/0.4 -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.5: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-oci-ta/0.5 -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.6/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.6/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.6/README.md -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.6/buildah-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.6/buildah-oci-ta.yaml -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.6/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.6/recipe.yaml -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.7/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.7/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.7/README.md -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.7/buildah-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.7/buildah-oci-ta.yaml -------------------------------------------------------------------------------- /task/buildah-oci-ta/0.7/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-oci-ta/0.7/recipe.yaml -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.4: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-remote-oci-ta/0.4 -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.5: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-remote-oci-ta/0.5 -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.6/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote-oci-ta/0.6/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote-oci-ta/0.6/README.md -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.6/buildah-remote-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote-oci-ta/0.6/buildah-remote-oci-ta.yaml -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.7/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote-oci-ta/0.7/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote-oci-ta/0.7/README.md -------------------------------------------------------------------------------- /task/buildah-remote-oci-ta/0.7/buildah-remote-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote-oci-ta/0.7/buildah-remote-oci-ta.yaml -------------------------------------------------------------------------------- /task/buildah-remote/0.4: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-remote/0.4 -------------------------------------------------------------------------------- /task/buildah-remote/0.5: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah-remote/0.5 -------------------------------------------------------------------------------- /task/buildah-remote/0.6/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote/0.6/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-remote/0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote/0.6/README.md -------------------------------------------------------------------------------- /task/buildah-remote/0.6/buildah-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote/0.6/buildah-remote.yaml -------------------------------------------------------------------------------- /task/buildah-remote/0.7/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote/0.7/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah-remote/0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote/0.7/README.md -------------------------------------------------------------------------------- /task/buildah-remote/0.7/buildah-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah-remote/0.7/buildah-remote.yaml -------------------------------------------------------------------------------- /task/buildah/0.4: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah/0.4 -------------------------------------------------------------------------------- /task/buildah/0.5: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/buildah/0.5 -------------------------------------------------------------------------------- /task/buildah/0.6/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.6/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah/0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.6/README.md -------------------------------------------------------------------------------- /task/buildah/0.6/buildah.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.6/buildah.yaml -------------------------------------------------------------------------------- /task/buildah/0.6/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.6/kustomization.yaml -------------------------------------------------------------------------------- /task/buildah/0.7/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.7/MIGRATION.md -------------------------------------------------------------------------------- /task/buildah/0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.7/README.md -------------------------------------------------------------------------------- /task/buildah/0.7/buildah.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.7/buildah.yaml -------------------------------------------------------------------------------- /task/buildah/0.7/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/buildah/0.7/kustomization.yaml -------------------------------------------------------------------------------- /task/clair-scan/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/clair-scan/0.1 -------------------------------------------------------------------------------- /task/clair-scan/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/clair-scan/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.2/README.md -------------------------------------------------------------------------------- /task/clair-scan/0.2/clair-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.2/clair-scan.yaml -------------------------------------------------------------------------------- /task/clair-scan/0.2/spec/clair_scan_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.2/spec/clair_scan_spec.sh -------------------------------------------------------------------------------- /task/clair-scan/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/clair-scan/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.3/README.md -------------------------------------------------------------------------------- /task/clair-scan/0.3/clair-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.3/clair-scan.yaml -------------------------------------------------------------------------------- /task/clair-scan/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/clair-scan/0.3/spec/clair_scan_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clair-scan/0.3/spec/clair_scan_spec.sh -------------------------------------------------------------------------------- /task/clamav-scan/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/clamav-scan/0.1 -------------------------------------------------------------------------------- /task/clamav-scan/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/clamav-scan/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.2/README.md -------------------------------------------------------------------------------- /task/clamav-scan/0.2/clamav-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.2/clamav-scan.yaml -------------------------------------------------------------------------------- /task/clamav-scan/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/clamav-scan/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.3/README.md -------------------------------------------------------------------------------- /task/clamav-scan/0.3/clamav-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.3/clamav-scan.yaml -------------------------------------------------------------------------------- /task/clamav-scan/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/clamav-scan/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/coverity-availability-check/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/coverity-availability-check/0.1 -------------------------------------------------------------------------------- /task/coverity-availability-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/coverity-availability-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/coverity-availability-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/coverity-availability-check/0.2/README.md -------------------------------------------------------------------------------- /task/coverity-availability-check/0.2/coverity-availability-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/coverity-availability-check/0.2/coverity-availability-check.yaml -------------------------------------------------------------------------------- /task/coverity-availability-check/0.2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/coverity-availability-check/0.2/kustomization.yaml -------------------------------------------------------------------------------- /task/coverity-availability-check/0.2/tests/test-coverity-availability-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/coverity-availability-check/0.2/tests/test-coverity-availability-check.yaml -------------------------------------------------------------------------------- /task/deprecated-image-check/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/deprecated-image-check/0.1 -------------------------------------------------------------------------------- /task/deprecated-image-check/0.2: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/deprecated-image-check/0.2 -------------------------------------------------------------------------------- /task/deprecated-image-check/0.3: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/deprecated-image-check/0.3 -------------------------------------------------------------------------------- /task/deprecated-image-check/0.4: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/deprecated-image-check/0.4 -------------------------------------------------------------------------------- /task/deprecated-image-check/0.5/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/deprecated-image-check/0.5/MIGRATION.md -------------------------------------------------------------------------------- /task/deprecated-image-check/0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/deprecated-image-check/0.5/README.md -------------------------------------------------------------------------------- /task/deprecated-image-check/0.5/deprecated-image-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/deprecated-image-check/0.5/deprecated-image-check.yaml -------------------------------------------------------------------------------- /task/eaas-provision-space/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/eaas-provision-space/0.1/README.md -------------------------------------------------------------------------------- /task/eaas-provision-space/0.1/eaas-provision-space.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/eaas-provision-space/0.1/eaas-provision-space.yaml -------------------------------------------------------------------------------- /task/ecosystem-cert-preflight-checks/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/ecosystem-cert-preflight-checks/0.1 -------------------------------------------------------------------------------- /task/ecosystem-cert-preflight-checks/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/ecosystem-cert-preflight-checks/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/ecosystem-cert-preflight-checks/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/ecosystem-cert-preflight-checks/0.2/README.md -------------------------------------------------------------------------------- /task/ecosystem-cert-preflight-checks/0.2/ecosystem-cert-preflight-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/ecosystem-cert-preflight-checks/0.2/ecosystem-cert-preflight-checks.yaml -------------------------------------------------------------------------------- /task/ecosystem-cert-preflight-checks/0.2/migrations/0.2.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/ecosystem-cert-preflight-checks/0.2/migrations/0.2.1.sh -------------------------------------------------------------------------------- /task/fbc-fips-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-fips-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/fbc-fips-check-oci-ta/0.1/fbc-fips-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-fips-check-oci-ta/0.1/fbc-fips-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/fbc-fips-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-fips-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/fbc-fips-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-fips-check/0.1/README.md -------------------------------------------------------------------------------- /task/fbc-fips-check/0.1/fbc-fips-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-fips-check/0.1/fbc-fips-check.yaml -------------------------------------------------------------------------------- /task/fbc-target-index-pruning-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-target-index-pruning-check/0.1/README.md -------------------------------------------------------------------------------- /task/fbc-target-index-pruning-check/0.1/fbc-target-index-pruning-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fbc-target-index-pruning-check/0.1/fbc-target-index-pruning-check.yaml -------------------------------------------------------------------------------- /task/fips-operator-bundle-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fips-operator-bundle-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/fips-operator-bundle-check-oci-ta/0.1/fips-operator-bundle-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fips-operator-bundle-check-oci-ta/0.1/fips-operator-bundle-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/fips-operator-bundle-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fips-operator-bundle-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/fips-operator-bundle-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fips-operator-bundle-check/0.1/README.md -------------------------------------------------------------------------------- /task/fips-operator-bundle-check/0.1/fips-operator-bundle-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/fips-operator-bundle-check/0.1/fips-operator-bundle-check.yaml -------------------------------------------------------------------------------- /task/generate-labels/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/generate-labels/0.1/README.md -------------------------------------------------------------------------------- /task/generate-labels/0.1/generate-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/generate-labels/0.1/generate-labels.yaml -------------------------------------------------------------------------------- /task/git-clone-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/git-clone-oci-ta/0.1/git-clone-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone-oci-ta/0.1/git-clone-oci-ta.yaml -------------------------------------------------------------------------------- /task/git-clone-oci-ta/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone-oci-ta/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/git-clone-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/git-clone/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone/0.1/README.md -------------------------------------------------------------------------------- /task/git-clone/0.1/git-clone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone/0.1/git-clone.yaml -------------------------------------------------------------------------------- /task/git-clone/0.1/tests/test-git-clone-fail-for-wrong-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone/0.1/tests/test-git-clone-fail-for-wrong-url.yaml -------------------------------------------------------------------------------- /task/git-clone/0.1/tests/test-git-clone-run-with-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone/0.1/tests/test-git-clone-run-with-tag.yaml -------------------------------------------------------------------------------- /task/git-clone/0.1/tests/test-git-clone-run-without-args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/git-clone/0.1/tests/test-git-clone-run-without-args.yaml -------------------------------------------------------------------------------- /task/init/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/init/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/init/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/init/0.2/README.md -------------------------------------------------------------------------------- /task/init/0.2/init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/init/0.2/init.yaml -------------------------------------------------------------------------------- /task/init/0.2/migrations/0.2.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/init/0.2/migrations/0.2.1.sh -------------------------------------------------------------------------------- /task/init/0.2/migrations/0.2.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/init/0.2/migrations/0.2.2.sh -------------------------------------------------------------------------------- /task/init/0.2/migrations/0.2.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/init/0.2/migrations/0.2.3.sh -------------------------------------------------------------------------------- /task/ko-oci-ta/0.1/ko-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/ko-oci-ta/0.1/ko-oci-ta.yaml -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/modelcar-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/modelcar-oci-ta.yaml -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/tests/pre-apply-task-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/tests/pre-apply-task-hook.sh -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-alternative-arch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-alternative-arch.yaml -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-floating-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-floating-tag.yaml -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-happy-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-happy-path.yaml -------------------------------------------------------------------------------- /task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-without-remove-originals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/modelcar-oci-ta/0.1/tests/test-modelcar-oci-ta-without-remove-originals.yaml -------------------------------------------------------------------------------- /task/oci-copy-oci-ta/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/oci-copy-oci-ta/0.1 -------------------------------------------------------------------------------- /task/oci-copy-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/oci-copy-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /task/oci-copy-oci-ta/0.2/oci-copy-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy-oci-ta/0.2/oci-copy-oci-ta.yaml -------------------------------------------------------------------------------- /task/oci-copy-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /task/oci-copy/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/oci-copy/0.1 -------------------------------------------------------------------------------- /task/oci-copy/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/oci-copy/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy/0.2/README.md -------------------------------------------------------------------------------- /task/oci-copy/0.2/oci-copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/oci-copy/0.2/oci-copy.yaml -------------------------------------------------------------------------------- /task/operator-sdk-generate-bundle/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/operator-sdk-generate-bundle/0.1/README.md -------------------------------------------------------------------------------- /task/operator-sdk-generate-bundle/0.1/operator-sdk-generate-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/operator-sdk-generate-bundle/0.1/operator-sdk-generate-bundle.yaml -------------------------------------------------------------------------------- /task/opm-get-bundle-version/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/opm-get-bundle-version/0.1/README.md -------------------------------------------------------------------------------- /task/opm-get-bundle-version/0.1/opm-get-bundle-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/opm-get-bundle-version/0.1/opm-get-bundle-version.yaml -------------------------------------------------------------------------------- /task/opm-render-bundles/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/opm-render-bundles/0.1/README.md -------------------------------------------------------------------------------- /task/opm-render-bundles/0.1/opm-render-bundles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/opm-render-bundles/0.1/opm-render-bundles.yaml -------------------------------------------------------------------------------- /task/pnc-prebuild-git-clone-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/pnc-prebuild-git-clone-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/pnc-prebuild-git-clone-oci-ta/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/pnc-prebuild-git-clone-oci-ta/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/pnc-prebuild-git-clone-oci-ta/0.1/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/pnc-prebuild-git-clone-oci-ta/0.1/patch.yaml -------------------------------------------------------------------------------- /task/pnc-prebuild-git-clone-oci-ta/0.1/pnc-prebuild-git-clone-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/pnc-prebuild-git-clone-oci-ta/0.1/pnc-prebuild-git-clone-oci-ta.yaml -------------------------------------------------------------------------------- /task/prefetch-dependencies-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/prefetch-dependencies-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /task/prefetch-dependencies-oci-ta/0.2/prefetch-dependencies-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies-oci-ta/0.2/prefetch-dependencies-oci-ta.yaml -------------------------------------------------------------------------------- /task/prefetch-dependencies-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /task/prefetch-dependencies/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/prefetch-dependencies/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies/0.2/README.md -------------------------------------------------------------------------------- /task/prefetch-dependencies/0.2/prefetch-dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/prefetch-dependencies/0.2/prefetch-dependencies.yaml -------------------------------------------------------------------------------- /task/push-dockerfile-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/push-dockerfile-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/push-dockerfile-oci-ta/0.1/push-dockerfile-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/push-dockerfile-oci-ta/0.1/push-dockerfile-oci-ta.yaml -------------------------------------------------------------------------------- /task/push-dockerfile-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/push-dockerfile-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/push-dockerfile/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/push-dockerfile/0.1/README.md -------------------------------------------------------------------------------- /task/push-dockerfile/0.1/push-dockerfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/push-dockerfile/0.1/push-dockerfile.yaml -------------------------------------------------------------------------------- /task/rpms-signature-scan/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/rpms-signature-scan/0.1 -------------------------------------------------------------------------------- /task/rpms-signature-scan/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/rpms-signature-scan/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/rpms-signature-scan/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/rpms-signature-scan/0.2/README.md -------------------------------------------------------------------------------- /task/rpms-signature-scan/0.2/rpms-signature-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/rpms-signature-scan/0.2/rpms-signature-scan.yaml -------------------------------------------------------------------------------- /task/rpms-signature-scan/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/rpms-signature-scan/OWNERS -------------------------------------------------------------------------------- /task/run-opm-command-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/run-opm-command-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/run-opm-command-oci-ta/0.1/run-opm-command-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/run-opm-command-oci-ta/0.1/run-opm-command-oci-ta.yaml -------------------------------------------------------------------------------- /task/run-script-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/run-script-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/run-script-oci-ta/0.1/run-script-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/run-script-oci-ta/0.1/run-script-oci-ta.yaml -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-coverity-check-oci-ta/0.1 -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.2: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-coverity-check-oci-ta/0.2 -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check-oci-ta/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check-oci-ta/0.3/README.md -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check-oci-ta/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.3/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check-oci-ta/0.3/recipe.yaml -------------------------------------------------------------------------------- /task/sast-coverity-check-oci-ta/0.3/sast-coverity-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check-oci-ta/0.3/sast-coverity-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/sast-coverity-check/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-coverity-check/0.1 -------------------------------------------------------------------------------- /task/sast-coverity-check/0.2: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-coverity-check/0.2 -------------------------------------------------------------------------------- /task/sast-coverity-check/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-coverity-check/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check/0.3/README.md -------------------------------------------------------------------------------- /task/sast-coverity-check/0.3/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check/0.3/kustomization.yaml -------------------------------------------------------------------------------- /task/sast-coverity-check/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/sast-coverity-check/0.3/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check/0.3/patch.yaml -------------------------------------------------------------------------------- /task/sast-coverity-check/0.3/sast-coverity-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-coverity-check/0.3/sast-coverity-check.yaml -------------------------------------------------------------------------------- /task/sast-shell-check-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/sast-shell-check-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/sast-shell-check-oci-ta/0.1/sast-shell-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check-oci-ta/0.1/sast-shell-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/sast-shell-check/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check/0.1/README.md -------------------------------------------------------------------------------- /task/sast-shell-check/0.1/sast-shell-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check/0.1/sast-shell-check.yaml -------------------------------------------------------------------------------- /task/sast-shell-check/0.1/tests/test-sast-shell-check-bad-kfp-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check/0.1/tests/test-sast-shell-check-bad-kfp-repo.yaml -------------------------------------------------------------------------------- /task/sast-shell-check/0.1/tests/test-sast-shell-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-shell-check/0.1/tests/test-sast-shell-check.yaml -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-snyk-check-oci-ta/0.1 -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.2: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-snyk-check-oci-ta/0.2 -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.3: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-snyk-check-oci-ta/0.3 -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check-oci-ta/0.4/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check-oci-ta/0.4/README.md -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.4/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check-oci-ta/0.4/recipe.yaml -------------------------------------------------------------------------------- /task/sast-snyk-check-oci-ta/0.4/sast-snyk-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check-oci-ta/0.4/sast-snyk-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/sast-snyk-check/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-snyk-check/0.1 -------------------------------------------------------------------------------- /task/sast-snyk-check/0.2: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-snyk-check/0.2 -------------------------------------------------------------------------------- /task/sast-snyk-check/0.3: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-snyk-check/0.3 -------------------------------------------------------------------------------- /task/sast-snyk-check/0.4/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check/0.4/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-snyk-check/0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check/0.4/README.md -------------------------------------------------------------------------------- /task/sast-snyk-check/0.4/sast-snyk-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check/0.4/sast-snyk-check.yaml -------------------------------------------------------------------------------- /task/sast-snyk-check/0.4/tests/pre-apply-task-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check/0.4/tests/pre-apply-task-hook.sh -------------------------------------------------------------------------------- /task/sast-snyk-check/0.4/tests/test-sast-snyk-check-no-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-snyk-check/0.4/tests/test-sast-snyk-check-no-token.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-unicode-check-oci-ta/0.1 -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.2/sast-unicode-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.2/sast-unicode-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.3/README.md -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.3/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.3/recipe.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check-oci-ta/0.3/sast-unicode-check-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check-oci-ta/0.3/sast-unicode-check-oci-ta.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sast-unicode-check/0.1 -------------------------------------------------------------------------------- /task/sast-unicode-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-unicode-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.2/README.md -------------------------------------------------------------------------------- /task/sast-unicode-check/0.2/sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.2/sast-unicode-check.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check/0.2/tests/test-sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.2/tests/test-sast-unicode-check.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/sast-unicode-check/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.3/README.md -------------------------------------------------------------------------------- /task/sast-unicode-check/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/sast-unicode-check/0.3/sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.3/sast-unicode-check.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check/0.3/tests/test-sast-unicode-check-bad-kfp-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.3/tests/test-sast-unicode-check-bad-kfp-repo.yaml -------------------------------------------------------------------------------- /task/sast-unicode-check/0.3/tests/test-sast-unicode-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sast-unicode-check/0.3/tests/test-sast-unicode-check.yaml -------------------------------------------------------------------------------- /task/sbom-json-check/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/sbom-json-check/0.1 -------------------------------------------------------------------------------- /task/sbom-json-check/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sbom-json-check/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/sbom-json-check/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sbom-json-check/0.2/README.md -------------------------------------------------------------------------------- /task/sbom-json-check/0.2/sbom-json-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sbom-json-check/0.2/sbom-json-check.yaml -------------------------------------------------------------------------------- /task/sealights-go-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-go-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/sealights-go-oci-ta/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-go-oci-ta/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/sealights-go-oci-ta/0.1/sealights-go-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-go-oci-ta/0.1/sealights-go-oci-ta.yaml -------------------------------------------------------------------------------- /task/sealights-nodejs-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-nodejs-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/sealights-nodejs-oci-ta/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-nodejs-oci-ta/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/sealights-nodejs-oci-ta/0.1/sealights-nodejs-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-nodejs-oci-ta/0.1/sealights-nodejs-oci-ta.yaml -------------------------------------------------------------------------------- /task/sealights-python-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-python-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/sealights-python-oci-ta/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-python-oci-ta/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/sealights-python-oci-ta/0.1/sealights-python-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/sealights-python-oci-ta/0.1/sealights-python-oci-ta.yaml -------------------------------------------------------------------------------- /task/show-sbom/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/show-sbom/0.1/README.md -------------------------------------------------------------------------------- /task/show-sbom/0.1/show-sbom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/show-sbom/0.1/show-sbom.yaml -------------------------------------------------------------------------------- /task/slack-webhook-notification-oci-ta/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/slack-webhook-notification-oci-ta/0.1/README.md -------------------------------------------------------------------------------- /task/slack-webhook-notification-oci-ta/0.1/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/slack-webhook-notification-oci-ta/0.1/recipe.yaml -------------------------------------------------------------------------------- /task/slack-webhook-notification-oci-ta/0.1/slack-webhook-notification-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/slack-webhook-notification-oci-ta/0.1/slack-webhook-notification-oci-ta.yaml -------------------------------------------------------------------------------- /task/slack-webhook-notification/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/slack-webhook-notification/0.1/README.md -------------------------------------------------------------------------------- /task/slack-webhook-notification/0.1/slack-webhook-notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/slack-webhook-notification/0.1/slack-webhook-notification.yaml -------------------------------------------------------------------------------- /task/source-build-oci-ta/0.2: -------------------------------------------------------------------------------- 1 | archived-tasks/source-build-oci-ta/0.2/ -------------------------------------------------------------------------------- /task/source-build-oci-ta/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build-oci-ta/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/source-build-oci-ta/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build-oci-ta/0.3/README.md -------------------------------------------------------------------------------- /task/source-build-oci-ta/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build-oci-ta/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/source-build-oci-ta/0.3/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build-oci-ta/0.3/recipe.yaml -------------------------------------------------------------------------------- /task/source-build-oci-ta/0.3/source-build-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build-oci-ta/0.3/source-build-oci-ta.yaml -------------------------------------------------------------------------------- /task/source-build/0.2: -------------------------------------------------------------------------------- 1 | archived-tasks/source-build/0.2/ -------------------------------------------------------------------------------- /task/source-build/0.3/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build/0.3/MIGRATION.md -------------------------------------------------------------------------------- /task/source-build/0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build/0.3/README.md -------------------------------------------------------------------------------- /task/source-build/0.3/migrations/0.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build/0.3/migrations/0.3.sh -------------------------------------------------------------------------------- /task/source-build/0.3/source-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/source-build/0.3/source-build.yaml -------------------------------------------------------------------------------- /task/summary/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/summary/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/summary/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/summary/0.2/README.md -------------------------------------------------------------------------------- /task/summary/0.2/summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/summary/0.2/summary.yaml -------------------------------------------------------------------------------- /task/tkn-bundle-oci-ta/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/tkn-bundle-oci-ta/0.1 -------------------------------------------------------------------------------- /task/tkn-bundle-oci-ta/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle-oci-ta/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/tkn-bundle-oci-ta/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle-oci-ta/0.2/README.md -------------------------------------------------------------------------------- /task/tkn-bundle-oci-ta/0.2/migrations/0.2.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle-oci-ta/0.2/migrations/0.2.1.sh -------------------------------------------------------------------------------- /task/tkn-bundle-oci-ta/0.2/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle-oci-ta/0.2/recipe.yaml -------------------------------------------------------------------------------- /task/tkn-bundle-oci-ta/0.2/tkn-bundle-oci-ta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle-oci-ta/0.2/tkn-bundle-oci-ta.yaml -------------------------------------------------------------------------------- /task/tkn-bundle/0.1: -------------------------------------------------------------------------------- 1 | ../../archived-tasks/tkn-bundle/0.1 -------------------------------------------------------------------------------- /task/tkn-bundle/0.2/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle/0.2/MIGRATION.md -------------------------------------------------------------------------------- /task/tkn-bundle/0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle/0.2/README.md -------------------------------------------------------------------------------- /task/tkn-bundle/0.2/migrations/0.2.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle/0.2/migrations/0.2.1.sh -------------------------------------------------------------------------------- /task/tkn-bundle/0.2/tkn-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/tkn-bundle/0.2/tkn-bundle.yaml -------------------------------------------------------------------------------- /task/update-infra-deployments/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/update-infra-deployments/0.1/README.md -------------------------------------------------------------------------------- /task/update-infra-deployments/0.1/update-infra-deployments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/update-infra-deployments/0.1/update-infra-deployments.yaml -------------------------------------------------------------------------------- /task/validate-fbc/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/validate-fbc/0.1/README.md -------------------------------------------------------------------------------- /task/validate-fbc/0.1/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/validate-fbc/0.1/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /task/validate-fbc/0.1/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/validate-fbc/0.1/USAGE.md -------------------------------------------------------------------------------- /task/validate-fbc/0.1/validate-fbc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/validate-fbc/0.1/validate-fbc.yaml -------------------------------------------------------------------------------- /task/verify-enterprise-contract/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-enterprise-contract/0.1/README.md -------------------------------------------------------------------------------- /task/verify-enterprise-contract/0.1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-enterprise-contract/0.1/kustomization.yaml -------------------------------------------------------------------------------- /task/verify-enterprise-contract/0.1/verify-enterprise-contract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-enterprise-contract/0.1/verify-enterprise-contract.yaml -------------------------------------------------------------------------------- /task/verify-source/0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-source/0.1/README.md -------------------------------------------------------------------------------- /task/verify-source/0.1/tests/test-verify-source-no-vsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-source/0.1/tests/test-verify-source-no-vsa.yaml -------------------------------------------------------------------------------- /task/verify-source/0.1/tests/test-verify-source-with-vsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-source/0.1/tests/test-verify-source-with-vsa.yaml -------------------------------------------------------------------------------- /task/verify-source/0.1/verify-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konflux-ci/build-definitions/HEAD/task/verify-source/0.1/verify-source.yaml --------------------------------------------------------------------------------