github.com/redhat-appstudio/e2e-tests@v0.0.0-20230619105049-9a422b2094d7/tests/e2e-demos/config/default.yaml (about) 1 tests: 2 - name: "DEVHAS-234: creates an application with springboot component from RHTAP samples" 3 applicationName: "e2e-springboot" 4 components: 5 - name: "springboot-component" 6 type: "public" 7 gitSourceUrl: "https://github.com/devfile-samples/devfile-sample-java-springboot-basic" 8 language: "Java" 9 healthz: "/" 10 - name: "DEVHAS-234: creates an application with python component from RHTAP samples" 11 applicationName: "e2e-python-personal" 12 components: 13 - name: "component-python-flask" 14 type: "public" 15 gitSourceUrl: "https://github.com/devfile-samples/devfile-sample-python-basic.git" 16 language: "Python" 17 healthz: "/" 18 - name: "DEVHAS-234: creates an application with dotnet component from RHTAP samples" 19 applicationName: "e2e-dotnet" 20 components: 21 - name: "dotnet-component" 22 type: "public" 23 gitSourceUrl: "https://github.com/devfile-samples/devfile-sample-dotnet60-basic" 24 language: "dotNet" 25 healthz: "/" 26 - name: "DEVHAS-234: create an nodejs application without dockerfile" 27 applicationName: "e2e-nodejs" 28 components: 29 - name: "nodejs-no-dockerfile" 30 type: "public" 31 gitSourceUrl: "https://github.com/nodeshift-starters/nodejs-health-check.git" 32 language: "JavaScript" 33 healthz: "/live" 34 - name: "nodejs-priv" 35 type: "private" 36 gitSourceUrl: "https://github.com/redhat-appstudio-qe-bot/nodejs-health-check.git" 37 language: "JavaScript" 38 healthz: "/live" 39 - name: "DEVHAS-234: create an golang application" 40 applicationName: "e2e-golang" 41 components: 42 - name: "golang-dockerfile" 43 type: "public" 44 gitSourceUrl: "https://github.com/devfile-samples/devfile-sample-go-basic" 45 language: "Go" 46 healthz: "/" 47 - name: "DEVHAS-234: create an nodejs application with dockerfile and devfile" 48 applicationName: "e2e-nodejs" 49 components: 50 - name: "nodejs-dockerfile" 51 type: "public" 52 gitSourceUrl: "https://github.com/nodeshift-starters/devfile-sample" 53 language: "JavaScript" 54 healthz: "/" 55 - name: "DEVHAS-234: create an application with quarkus component" 56 applicationName: "quarkus" 57 components: 58 - name: "quarkus-devfile" 59 type: "public" 60 gitSourceUrl: "https://github.com/devfile-samples/devfile-sample-code-with-quarkus.git" 61 language: "Java" 62 healthz: "/hello-resteasy" 63 - name: "DEVHAS-234: create an application with branch and context dir" 64 applicationName: "e2e-java" 65 components: 66 - name: "component-devfile-java-sample" 67 type: "public" 68 gitSourceUrl: "https://github.com/redhat-appstudio-qe/java-sample" 69 gitSourceRevision: "testing" 70 gitSourceContext: "java/java" 71 language: "Java" 72 healthz: "/" 73 - name: "DEVHAS-234: creates quarkus application(with dockerfile but not devfile) which is not included in AppStudio starter stack" 74 applicationName: "status-quarkus-io" 75 components: 76 - name: "status-quarkus-io" 77 type: "public" 78 gitSourceUrl: "https://github.com/quarkusio/status.quarkus.io.git" 79 language: "Java" 80 healthz: "/" 81 # requires to create secret and RHTAP dont have yet this ability 82 skipDeploy: true 83 - name: "DEVHAS-234: creates nodejs application(without dockerfile and devfile) which is not included in AppStudio starter stack" 84 applicationName: "nodejs-users" 85 components: 86 - name: "nodejs-user" 87 type: "public" 88 gitSourceUrl: "https://github.com/redhat-appstudio-qe/simple-nodejs-app.git" 89 language: "JavaScript" 90 healthz: "/users"