├── .ci ├── Dockerfile ├── Dockerfile.offline ├── acceptance-tests │ └── devfile-registry-acceptance.yaml ├── build-multi-arch.sh ├── build.sh ├── build_and_deploy.sh ├── deploy │ ├── devfile-registry.yaml │ ├── resources │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── route.yaml │ │ └── service.yaml │ └── route.yaml ├── generate_last_mod_file.sh ├── konflux.argfile.conf ├── odov3_build_and_deploy.sh └── openshift_integration.sh ├── .clomonitor.yml ├── .devfile.yaml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── check-architectures.yaml │ ├── ci.yaml │ ├── comment-pr.yaml │ ├── devfile-ci.yaml │ ├── pushimge-next.yaml │ ├── trigger-redeploy.yaml │ ├── validate-samples.yaml │ └── validate-stacks.yaml ├── .gitignore ├── .tekton ├── devfile-registry-main-pull-request.yaml └── devfile-registry-main-push.yaml ├── CONTRIBUTING.md ├── DCO ├── LICENSE ├── LIFECYCLE.md ├── OWNERS ├── README.md ├── TELEMETRY.md ├── USERS.md ├── extraDevfileEntries.yaml ├── renovate.json ├── stacks ├── dotnet80 │ └── devfile.yaml ├── go │ ├── 1.0.2 │ │ └── devfile.yaml │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.2.1 │ │ └── devfile.yaml │ ├── 1.3.0 │ │ └── devfile.yaml │ ├── 1.3.1 │ │ └── devfile.yaml │ ├── 1.4.0 │ │ └── devfile.yaml │ ├── 2.0.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.1.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.2.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.3.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.4.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.5.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ └── stack.yaml ├── java-maven │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.3.0 │ │ └── devfile.yaml │ ├── 1.3.1 │ │ └── devfile.yaml │ └── stack.yaml ├── java-openliberty-gradle │ └── devfile.yaml ├── java-openliberty │ └── devfile.yaml ├── java-quarkus │ ├── 1.3.0 │ │ └── devfile.yaml │ ├── 1.3.1 │ │ └── devfile.yaml │ ├── 1.4.0 │ │ └── devfile.yaml │ ├── 1.4.1 │ │ └── devfile.yaml │ ├── 1.5.0 │ │ └── devfile.yaml │ └── stack.yaml ├── java-springboot │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.3.0 │ │ └── devfile.yaml │ ├── 1.4.0 │ │ └── devfile.yaml │ ├── 2.0.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.1.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 2.2.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ └── stack.yaml ├── java-vertx │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.3.0 │ │ └── devfile.yaml │ ├── 1.4.0 │ │ └── devfile.yaml │ └── stack.yaml ├── java-websphereliberty-gradle │ └── devfile.yaml ├── java-websphereliberty │ └── devfile.yaml ├── java-wildfly-bootable-jar │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.3.0 │ │ └── devfile.yaml │ └── stack.yaml ├── java-wildfly │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 2.0.0 │ │ ├── deploy.yaml │ │ └── devfile.yaml │ ├── 2.0.1 │ │ ├── Containerfile │ │ ├── deploy.yaml │ │ └── devfile.yaml │ ├── 2.0.2 │ │ └── devfile.yaml │ └── stack.yaml ├── jhipster-online │ ├── 2.33.0 │ │ └── devfile.yaml │ ├── 2.33.1 │ │ └── devfile.yaml │ └── stack.yaml ├── kaoto │ └── devfile.yaml ├── nodejs-angular │ ├── 2.0.2 │ │ └── devfile.yaml │ ├── 2.1.0 │ │ └── devfile.yaml │ ├── 2.2.0 │ │ └── devfile.yaml │ ├── 2.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── nodejs-mongodb │ └── devfile.yaml ├── nodejs-nextjs │ ├── 1.0.3 │ │ └── devfile.yaml │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── nodejs-nuxtjs │ ├── 1.0.3 │ │ └── devfile.yaml │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── nodejs-react │ ├── 2.0.2 │ │ └── devfile.yaml │ ├── 2.1.0 │ │ └── devfile.yaml │ ├── 2.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── nodejs-svelte │ ├── 1.0.3 │ │ └── devfile.yaml │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── nodejs-vue │ ├── 1.0.2 │ │ └── devfile.yaml │ ├── 1.1.0 │ │ └── devfile.yaml │ ├── 1.2.0 │ │ └── devfile.yaml │ ├── 1.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── nodejs │ ├── 2.1.1 │ │ └── devfile.yaml │ ├── 2.2.0 │ │ └── devfile.yaml │ ├── 2.2.1 │ │ └── devfile.yaml │ └── stack.yaml ├── ollama │ └── devfile.yaml ├── php-laravel │ ├── 1.0.1 │ │ └── devfile.yaml │ ├── 2.0.0 │ │ └── devfile.yaml │ ├── 2.0.1 │ │ └── devfile.yaml │ ├── 3.0.0 │ │ └── devfile.yaml │ └── stack.yaml ├── python-django │ └── devfile.yaml ├── python │ ├── 2.1.0 │ │ └── devfile.yaml │ ├── 2.2.0 │ │ └── devfile.yaml │ ├── 3.0.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ ├── 3.1.0 │ │ ├── devfile.yaml │ │ ├── docker │ │ │ └── Dockerfile │ │ └── kubernetes │ │ │ └── deploy.yaml │ └── stack.yaml └── udi │ └── devfile.yaml └── tests ├── README.md ├── build_parents_file.sh ├── check_architectures.sh ├── check_non_terminating.sh ├── check_non_terminating ├── go.mod ├── go.sum └── main.go ├── check_odov2.sh ├── check_odov3.sh ├── get_stacks.sh ├── odov3 ├── go.mod ├── go.sum ├── odo_test.go └── types.go ├── paths_util.sh ├── validate_devfile_schemas.sh └── validate_devfile_schemas ├── go.mod ├── go.sum └── validate_devfile_schemas_test.go /.ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/Dockerfile -------------------------------------------------------------------------------- /.ci/Dockerfile.offline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/Dockerfile.offline -------------------------------------------------------------------------------- /.ci/acceptance-tests/devfile-registry-acceptance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/acceptance-tests/devfile-registry-acceptance.yaml -------------------------------------------------------------------------------- /.ci/build-multi-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/build-multi-arch.sh -------------------------------------------------------------------------------- /.ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/build.sh -------------------------------------------------------------------------------- /.ci/build_and_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/build_and_deploy.sh -------------------------------------------------------------------------------- /.ci/deploy/devfile-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/devfile-registry.yaml -------------------------------------------------------------------------------- /.ci/deploy/resources/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/resources/configmap.yaml -------------------------------------------------------------------------------- /.ci/deploy/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/resources/deployment.yaml -------------------------------------------------------------------------------- /.ci/deploy/resources/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/resources/ingress.yaml -------------------------------------------------------------------------------- /.ci/deploy/resources/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/resources/route.yaml -------------------------------------------------------------------------------- /.ci/deploy/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/resources/service.yaml -------------------------------------------------------------------------------- /.ci/deploy/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/deploy/route.yaml -------------------------------------------------------------------------------- /.ci/generate_last_mod_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/generate_last_mod_file.sh -------------------------------------------------------------------------------- /.ci/konflux.argfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/konflux.argfile.conf -------------------------------------------------------------------------------- /.ci/odov3_build_and_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/odov3_build_and_deploy.sh -------------------------------------------------------------------------------- /.ci/openshift_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.ci/openshift_integration.sh -------------------------------------------------------------------------------- /.clomonitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.clomonitor.yml -------------------------------------------------------------------------------- /.devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.devfile.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/check-architectures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/check-architectures.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/comment-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/comment-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/devfile-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/devfile-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pushimge-next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/pushimge-next.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-redeploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/trigger-redeploy.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-samples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/validate-samples.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-stacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.github/workflows/validate-stacks.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.gitignore -------------------------------------------------------------------------------- /.tekton/devfile-registry-main-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.tekton/devfile-registry-main-pull-request.yaml -------------------------------------------------------------------------------- /.tekton/devfile-registry-main-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/.tekton/devfile-registry-main-push.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/LICENSE -------------------------------------------------------------------------------- /LIFECYCLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/LIFECYCLE.md -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/README.md -------------------------------------------------------------------------------- /TELEMETRY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/TELEMETRY.md -------------------------------------------------------------------------------- /USERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/USERS.md -------------------------------------------------------------------------------- /extraDevfileEntries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/extraDevfileEntries.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/renovate.json -------------------------------------------------------------------------------- /stacks/dotnet80/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/dotnet80/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.0.2/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.0.2/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.3.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.3.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/1.4.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/1.4.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.0.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.0.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.0.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.0.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/go/2.0.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.0.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/go/2.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.1.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.1.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/go/2.1.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.1.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/go/2.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.2.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.2.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/go/2.2.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.2.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/go/2.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.3.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.3.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/go/2.3.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.3.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/go/2.4.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.4.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.4.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.4.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/go/2.4.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.4.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/go/2.5.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.5.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/go/2.5.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.5.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/go/2.5.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/2.5.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/go/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/go/stack.yaml -------------------------------------------------------------------------------- /stacks/java-maven/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-maven/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-maven/1.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-maven/1.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-maven/1.3.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-maven/1.3.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-maven/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-maven/stack.yaml -------------------------------------------------------------------------------- /stacks/java-openliberty-gradle/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-openliberty-gradle/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-openliberty/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-openliberty/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-quarkus/1.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-quarkus/1.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-quarkus/1.3.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-quarkus/1.3.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-quarkus/1.4.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-quarkus/1.4.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-quarkus/1.4.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-quarkus/1.4.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-quarkus/1.5.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-quarkus/1.5.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-quarkus/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-quarkus/stack.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/1.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/1.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/1.4.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/1.4.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/2.0.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.0.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/2.0.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.0.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/java-springboot/2.0.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.0.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/2.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/2.1.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.1.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/java-springboot/2.1.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.1.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/2.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/2.2.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.2.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/java-springboot/2.2.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/2.2.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/java-springboot/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-springboot/stack.yaml -------------------------------------------------------------------------------- /stacks/java-vertx/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-vertx/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-vertx/1.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-vertx/1.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-vertx/1.4.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-vertx/1.4.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-vertx/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-vertx/stack.yaml -------------------------------------------------------------------------------- /stacks/java-websphereliberty-gradle/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-websphereliberty-gradle/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-websphereliberty/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-websphereliberty/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly-bootable-jar/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly-bootable-jar/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly-bootable-jar/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly-bootable-jar/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly-bootable-jar/1.3.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly-bootable-jar/1.3.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly-bootable-jar/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly-bootable-jar/stack.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/2.0.0/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/2.0.0/deploy.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/2.0.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/2.0.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/2.0.1/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/2.0.1/Containerfile -------------------------------------------------------------------------------- /stacks/java-wildfly/2.0.1/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/2.0.1/deploy.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/2.0.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/2.0.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/2.0.2/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/2.0.2/devfile.yaml -------------------------------------------------------------------------------- /stacks/java-wildfly/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/java-wildfly/stack.yaml -------------------------------------------------------------------------------- /stacks/jhipster-online/2.33.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/jhipster-online/2.33.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/jhipster-online/2.33.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/jhipster-online/2.33.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/jhipster-online/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/jhipster-online/stack.yaml -------------------------------------------------------------------------------- /stacks/kaoto/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/kaoto/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-angular/2.0.2/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-angular/2.0.2/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-angular/2.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-angular/2.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-angular/2.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-angular/2.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-angular/2.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-angular/2.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-angular/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-angular/stack.yaml -------------------------------------------------------------------------------- /stacks/nodejs-mongodb/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-mongodb/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nextjs/1.0.3/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nextjs/1.0.3/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nextjs/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nextjs/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nextjs/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nextjs/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nextjs/1.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nextjs/1.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nextjs/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nextjs/stack.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nuxtjs/1.0.3/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nuxtjs/1.0.3/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nuxtjs/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nuxtjs/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nuxtjs/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nuxtjs/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nuxtjs/1.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nuxtjs/1.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-nuxtjs/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-nuxtjs/stack.yaml -------------------------------------------------------------------------------- /stacks/nodejs-react/2.0.2/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-react/2.0.2/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-react/2.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-react/2.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-react/2.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-react/2.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-react/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-react/stack.yaml -------------------------------------------------------------------------------- /stacks/nodejs-svelte/1.0.3/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-svelte/1.0.3/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-svelte/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-svelte/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-svelte/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-svelte/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-svelte/1.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-svelte/1.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-svelte/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-svelte/stack.yaml -------------------------------------------------------------------------------- /stacks/nodejs-vue/1.0.2/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-vue/1.0.2/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-vue/1.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-vue/1.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-vue/1.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-vue/1.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-vue/1.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-vue/1.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs-vue/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs-vue/stack.yaml -------------------------------------------------------------------------------- /stacks/nodejs/2.1.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs/2.1.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs/2.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs/2.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs/2.2.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs/2.2.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/nodejs/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/nodejs/stack.yaml -------------------------------------------------------------------------------- /stacks/ollama/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/ollama/devfile.yaml -------------------------------------------------------------------------------- /stacks/php-laravel/1.0.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/php-laravel/1.0.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/php-laravel/2.0.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/php-laravel/2.0.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/php-laravel/2.0.1/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/php-laravel/2.0.1/devfile.yaml -------------------------------------------------------------------------------- /stacks/php-laravel/3.0.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/php-laravel/3.0.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/php-laravel/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/php-laravel/stack.yaml -------------------------------------------------------------------------------- /stacks/python-django/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python-django/devfile.yaml -------------------------------------------------------------------------------- /stacks/python/2.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/2.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/python/2.2.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/2.2.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/python/3.0.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/3.0.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/python/3.0.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/3.0.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/python/3.0.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/3.0.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/python/3.1.0/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/3.1.0/devfile.yaml -------------------------------------------------------------------------------- /stacks/python/3.1.0/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/3.1.0/docker/Dockerfile -------------------------------------------------------------------------------- /stacks/python/3.1.0/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/3.1.0/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /stacks/python/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/python/stack.yaml -------------------------------------------------------------------------------- /stacks/udi/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/stacks/udi/devfile.yaml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/build_parents_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/build_parents_file.sh -------------------------------------------------------------------------------- /tests/check_architectures.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_architectures.sh -------------------------------------------------------------------------------- /tests/check_non_terminating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_non_terminating.sh -------------------------------------------------------------------------------- /tests/check_non_terminating/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_non_terminating/go.mod -------------------------------------------------------------------------------- /tests/check_non_terminating/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_non_terminating/go.sum -------------------------------------------------------------------------------- /tests/check_non_terminating/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_non_terminating/main.go -------------------------------------------------------------------------------- /tests/check_odov2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_odov2.sh -------------------------------------------------------------------------------- /tests/check_odov3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/check_odov3.sh -------------------------------------------------------------------------------- /tests/get_stacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/get_stacks.sh -------------------------------------------------------------------------------- /tests/odov3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/odov3/go.mod -------------------------------------------------------------------------------- /tests/odov3/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/odov3/go.sum -------------------------------------------------------------------------------- /tests/odov3/odo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/odov3/odo_test.go -------------------------------------------------------------------------------- /tests/odov3/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/odov3/types.go -------------------------------------------------------------------------------- /tests/paths_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/paths_util.sh -------------------------------------------------------------------------------- /tests/validate_devfile_schemas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/validate_devfile_schemas.sh -------------------------------------------------------------------------------- /tests/validate_devfile_schemas/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/validate_devfile_schemas/go.mod -------------------------------------------------------------------------------- /tests/validate_devfile_schemas/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/validate_devfile_schemas/go.sum -------------------------------------------------------------------------------- /tests/validate_devfile_schemas/validate_devfile_schemas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfile/registry/HEAD/tests/validate_devfile_schemas/validate_devfile_schemas_test.go --------------------------------------------------------------------------------