├── .gitignore ├── LICENSE ├── README.md ├── app-config ├── app.js ├── myapp.sec └── package.json ├── apps ├── compreview-cicd │ └── words │ │ ├── .containerignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── Containerfile │ │ ├── index.js │ │ ├── kubefiles │ │ └── app.yaml │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── palindrome.js │ │ └── tests │ │ └── palindrome.test.js ├── compreview-todo │ ├── todo-backend │ │ ├── .gitignore │ │ ├── Containerfile │ │ ├── build.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Server.ts │ │ │ ├── entities │ │ │ │ ├── Item.ts │ │ │ │ └── db.ts │ │ │ ├── index.ts │ │ │ └── routes │ │ │ │ ├── Items.ts │ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ └── todo-ssr │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── views │ │ ├── index.pug │ │ └── items.pug ├── deploy-cli │ └── weather-app │ │ ├── Containerfile │ │ ├── app.py │ │ ├── build_and_push_image.sh │ │ ├── requirements.txt │ │ └── setup.py ├── deploy-console │ ├── php-helloworld │ │ └── index.php │ └── todo-list │ │ ├── .containerignore │ │ ├── .gitignore │ │ ├── Containerfile │ │ ├── README.adoc │ │ ├── build_and_push_image.sh │ │ ├── db.js │ │ ├── db_in_memory.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── deploy-review │ └── todo-list │ │ ├── .containerignore │ │ ├── .gitignore │ │ ├── Containerfile │ │ ├── README.adoc │ │ ├── build_and_push_image.sh │ │ ├── db.js │ │ ├── db_in_memory.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── deployments-health │ └── expense-service │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── expense │ │ │ ├── Expense.java │ │ │ ├── ExpenseResource.java │ │ │ ├── ExpenseService.java │ │ │ └── health │ │ │ ├── CrashResource.java │ │ │ ├── LivenessHealthResource.java │ │ │ ├── ReadinessHealthResource.java │ │ │ └── StateService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties ├── multicontainer-review │ └── famous-quotes │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── Containerfile │ │ ├── compose.yaml │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── ptl │ │ │ │ └── redhat │ │ │ │ └── com │ │ │ │ └── springquotes │ │ │ │ ├── Quote.java │ │ │ │ └── SpringQuotesApplication.java │ │ └── resources │ │ │ └── application.yaml │ │ └── test │ │ ├── java │ │ └── ptl │ │ │ └── redhat │ │ │ └── com │ │ │ └── springquotes │ │ │ └── SpringQuotesApplicationTests.java │ │ └── resources │ │ └── import.csv ├── pipelines-creation │ └── exchange │ │ ├── .containerignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── Containerfile │ │ ├── convert.js │ │ ├── index.js │ │ ├── package.json │ │ └── tests │ │ └── convert.test.js └── pipelines-review │ └── vertx-site │ ├── README.adoc │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── redhat │ │ └── vertx_site │ │ └── MainVerticle.java │ └── test │ └── java │ └── com │ └── redhat │ └── tests │ └── VertxSiteTest.java ├── books ├── .eslintrc ├── .gitignore ├── data │ ├── authors.js │ └── books.js ├── exec │ └── www ├── jenkins │ └── Jenkinsfile ├── package-lock.json ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── routes │ ├── authors.js │ ├── books.js │ └── index.js ├── server.js ├── tests │ └── app_test.js └── views │ ├── error.hbs │ ├── index.hbs │ └── layout.hbs ├── container-build ├── Containerfile └── src │ └── index.html ├── deployments-applications └── apps │ └── expense-service │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── model │ │ ├── Associate.java │ │ └── Expense.java │ │ └── rest │ │ └── ExpenseResource.java │ └── resources │ ├── META-INF │ ├── import.sql │ └── resources │ │ └── index.html │ └── application.properties ├── deployments-review └── apps │ └── expense-service │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── health │ │ ├── HealthSwitch.java │ │ ├── LivenessCheck.java │ │ └── ReadinessCheck.java │ │ ├── model │ │ ├── Associate.java │ │ └── Expense.java │ │ └── rest │ │ ├── ExpenseResource.java │ │ └── HealthSwitchResource.java │ └── resources │ ├── META-INF │ ├── import.sql │ └── resources │ │ └── index.html │ └── application.properties ├── deployments-strategy ├── apps │ └── users-db │ │ ├── Dockerfile │ │ ├── import.sh │ │ └── users.sql └── solutions │ └── application.yaml ├── go-hello └── app.go ├── hello-java ├── Containerfile ├── app-src │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── openshift │ │ └── hello │ │ ├── HelloResource.java │ │ └── JaxRsActivator.java └── run-app.sh ├── hello-world-nginx ├── Dockerfile ├── index.html └── nginxconf.sed ├── helm └── charts │ └── mariadb │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ └── common │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── _affinities.tpl │ │ ├── _capabilities.tpl │ │ ├── _errors.tpl │ │ ├── _images.tpl │ │ ├── _ingress.tpl │ │ ├── _labels.tpl │ │ ├── _names.tpl │ │ ├── _secrets.tpl │ │ ├── _storage.tpl │ │ ├── _tplvalues.tpl │ │ ├── _utils.tpl │ │ ├── _warnings.tpl │ │ └── validations │ │ │ ├── _cassandra.tpl │ │ │ ├── _mariadb.tpl │ │ │ ├── _mongodb.tpl │ │ │ ├── _mysql.tpl │ │ │ ├── _postgresql.tpl │ │ │ ├── _redis.tpl │ │ │ └── _validations.tpl │ │ └── values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── extra-list.yaml │ ├── networkpolicy-egress.yaml │ ├── primary │ │ ├── configmap.yaml │ │ ├── initialization-configmap.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── pdb.yaml │ │ ├── statefulset.yaml │ │ └── svc.yaml │ ├── prometheusrules.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── secondary │ │ ├── configmap.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── pdb.yaml │ │ ├── statefulset.yaml │ │ └── svc.yaml │ ├── secrets.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml │ ├── values.schema.json │ └── values.yaml ├── html-helloworld └── index.html ├── images-ubi ├── apps │ └── greetings │ │ ├── .containerignore │ │ ├── Containerfile │ │ ├── LocalizationService.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json └── solutions │ └── greetings │ └── Containerfile ├── java-serverhost ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── redhat │ └── training │ └── example │ └── javaserverhost │ └── rest │ ├── RestApplication.java │ └── ServerHostEndPoint.java ├── kubefiles ├── deploy-introduction │ └── sample-node-app.yaml ├── deployments-health │ └── project-dimensioning.yaml └── pipelines-review │ ├── clustertask.yaml │ └── gradedrun.yaml ├── labs ├── architecture-setup │ └── hello-flask │ │ ├── .gitignore │ │ ├── devfile.yaml │ │ ├── docker │ │ └── Dockerfile │ │ ├── kubernetes │ │ └── deploy.yaml │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── src │ │ ├── __init__.py │ │ └── app.py ├── compreview-cicd │ ├── npm-task.yaml │ ├── pipeline.yaml │ └── volume-template.yaml ├── compreview-todo │ ├── README.txt │ └── todo-frontend │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── .prettierrc.json │ │ ├── Containerfile │ │ ├── README.md │ │ ├── nginx.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── AlertMessage.tsx │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Loading.tsx │ │ ├── UserMessage.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── items │ │ │ ├── Item.ts │ │ │ ├── ItemForm.tsx │ │ │ ├── ItemList.css │ │ │ ├── ItemList.tsx │ │ │ ├── ItemPage.tsx │ │ │ ├── item-service.test.ts │ │ │ └── item-service.ts │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ │ └── tsconfig.json ├── deploy-cli │ └── weather │ │ ├── app.py │ │ ├── devfile.yaml │ │ ├── docker │ │ └── Dockerfile │ │ ├── kubernetes │ │ └── deploy.yaml │ │ ├── requirements.txt │ │ └── setup.py ├── deployments-health │ └── application.yaml ├── multicontainer-kustomize │ └── deployment.yaml ├── multicontainer-review │ ├── famous-quotes │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── .gitkeep │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── redis-persistent-0.0.1.tgz │ │ ├── route.yaml │ │ ├── service.yaml │ │ ├── templates │ │ │ └── .gitkeep │ │ └── values.yaml │ └── kustomized-quotes │ │ ├── base │ │ └── app.yaml │ │ └── overlays │ │ ├── production │ │ └── prod_dimensioning.yaml │ │ └── staging │ │ └── staging_dimensioning.yaml ├── pipelines-creation │ ├── npm-task.yaml │ ├── pipeline.yaml │ └── volume-template.yaml └── pipelines-review │ ├── pipeline.yaml │ ├── run.yaml │ └── task.yaml ├── micro-java ├── .dockerignore ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── openshift │ │ │ └── hello │ │ │ └── HelloResource.java │ ├── jkube │ │ ├── cm.yml │ │ └── deployment.yml │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── openshift │ └── hello │ ├── HelloResourceTest.java │ └── NativeHelloResourceIT.java ├── movies ├── Jenkinsfile ├── pom.xml ├── settings.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── movies │ │ │ ├── Movie.java │ │ │ ├── MoviesApplication.java │ │ │ └── MoviesController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── movies │ └── MoviesApplicationTests.java ├── multicontainer-helm ├── labs │ └── expense-service │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── expense-deployment.yaml │ │ ├── expense-route.yaml │ │ ├── expense-svc.yaml │ │ ├── postgres-deployment.yaml │ │ ├── postgres-secret.yaml │ │ └── postgres-svc.yaml │ │ └── values.yaml └── solutions │ └── expense-service │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── expense-deployment.yaml │ ├── expense-route.yaml │ ├── expense-svc.yaml │ ├── postgres-deployment.yaml │ ├── postgres-secret.yaml │ └── postgres-svc.yaml │ └── values.yaml ├── mvn-offline-mode.sh ├── nexus3 ├── Dockerfile ├── README.md └── solo.json.erb ├── nodejs-helloworld ├── app.js └── package.json ├── php-hello-dockerfile ├── Dockerfile └── index.php ├── php-helloworld └── index.php ├── php-scale └── index.php ├── post-commit └── index.php ├── probes ├── app.js └── package.json ├── quip ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── redhat │ └── training │ └── example │ ├── JaxRsActivator.java │ └── Quip.java ├── quotes ├── get.php └── index.php ├── s2i-scripts ├── .s2i │ └── bin │ │ ├── assemble │ │ └── run └── index.html ├── simple-pipeline └── Jenkinsfile ├── solutions ├── compreview-cicd │ └── pipeline.yaml ├── compreview-todo │ ├── Containerfile-frontend-solution │ └── todo-list │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── charts │ │ └── .gitkeep │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ └── values.yaml ├── deploy-cli │ └── weather-app │ │ └── devfile.yaml ├── multicontainer-kustomize │ └── famous-kustomize │ │ ├── base │ │ ├── deployment.yaml │ │ └── kustomization.yaml │ │ └── overlays │ │ ├── dev │ │ ├── kustomization.yaml │ │ └── replica_limits.yaml │ │ └── prod │ │ ├── kustomization.yaml │ │ └── replica_limits.yaml ├── multicontainer-review │ ├── famous-quotes │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── redis-persistent-0.0.1.tgz │ │ ├── templates │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── route.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ └── kustomized-quotes │ │ ├── base │ │ ├── app.yaml │ │ └── kustomization.yaml │ │ └── overlays │ │ ├── production │ │ ├── kustomization.yaml │ │ └── prod_dimensioning.yaml │ │ └── staging │ │ ├── kustomization.yaml │ │ └── staging_dimensioning.yaml ├── pipelines-creation │ ├── npm-task.yaml │ └── pipeline.yaml └── pipelines-review │ ├── pipeline.yaml │ └── task.yaml ├── todo-api-micro ├── pom.xml └── src │ └── main │ ├── fabric8 │ └── .gitkeep │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── example │ │ └── todoapi │ │ │ └── rest │ │ │ ├── HelloWorldEndpoint.java │ │ │ └── Main.java │ │ ├── model │ │ ├── Host.java │ │ └── Item.java │ │ ├── rest │ │ ├── CORSRequestFilter.java │ │ ├── CORSResponseFilter.java │ │ ├── HostService.java │ │ ├── ItemService.java │ │ └── RestApplication.java │ │ └── ui │ │ └── PaginatedListWrapper.java │ └── resources │ ├── META-INF │ └── persistence.xml │ ├── modules │ └── com │ │ └── mysql │ │ └── main │ │ └── module.xml │ ├── project-defaults.yml │ └── sql │ ├── create.sql │ ├── drop.sql │ └── load.sql ├── todo-api ├── .dockerignore ├── .gitignore ├── README.md ├── pom.xml └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ └── openshift │ │ └── todoapi │ │ ├── Item.java │ │ └── ItemResource.java │ ├── jkube │ └── .gitkeep │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ └── application.properties ├── todo-backend ├── .gitignore ├── Containerfile ├── build.ts ├── package-lock.json ├── package.json ├── src │ ├── Server.ts │ ├── entities │ │ ├── Item.ts │ │ └── db.ts │ ├── index.ts │ └── routes │ │ ├── Items.ts │ │ └── index.ts ├── tsconfig.json └── tsconfig.prod.json ├── todo-frontend ├── .gitignore ├── .prettierrc.json ├── Containerfile ├── README.md ├── nginx.conf ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── AlertMessage.tsx │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── Loading.tsx │ ├── UserMessage.tsx │ ├── index.css │ ├── index.tsx │ ├── items │ │ ├── Item.ts │ │ ├── ItemForm.tsx │ │ ├── ItemList.css │ │ ├── ItemList.tsx │ │ ├── ItemPage.tsx │ │ ├── item-service.test.ts │ │ └── item-service.ts │ ├── logo.svg │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts └── tsconfig.json ├── todo-single ├── app.js ├── controllers │ └── items.js ├── models │ ├── db.js │ └── items.js ├── package.json └── todo │ ├── css │ └── style.css │ ├── hello.html │ ├── index.html │ ├── lib │ └── dependencies │ │ ├── angular-resource.min.js │ │ ├── angular.min.js │ │ ├── css │ │ ├── bootstrap.min.css │ │ └── ng-grid.min.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── jquery.min.js │ │ ├── ng-grid-2.0.11.min.js │ │ └── ui-bootstrap-tpls.min.js │ └── script │ └── item.js ├── todo-ssr ├── .gitignore ├── README.md ├── index.js ├── package-lock.json ├── package.json └── views │ ├── index.pug │ └── items.pug ├── trigger-builds └── index.php ├── ubi-echo └── Dockerfile ├── ubi-info ├── Dockerfile └── info.sh └── ubi-sleep └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/README.md -------------------------------------------------------------------------------- /app-config/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/app-config/app.js -------------------------------------------------------------------------------- /app-config/myapp.sec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/app-config/myapp.sec -------------------------------------------------------------------------------- /app-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/app-config/package.json -------------------------------------------------------------------------------- /apps/compreview-cicd/words/.containerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/.containerignore -------------------------------------------------------------------------------- /apps/compreview-cicd/words/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/.eslintrc.js -------------------------------------------------------------------------------- /apps/compreview-cicd/words/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /apps/compreview-cicd/words/.npmrc: -------------------------------------------------------------------------------- 1 | registry=http://nexus-infra.apps.ocp4.example.com/repository/npm 2 | -------------------------------------------------------------------------------- /apps/compreview-cicd/words/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/Containerfile -------------------------------------------------------------------------------- /apps/compreview-cicd/words/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/index.js -------------------------------------------------------------------------------- /apps/compreview-cicd/words/kubefiles/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/kubefiles/app.yaml -------------------------------------------------------------------------------- /apps/compreview-cicd/words/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/package-lock.json -------------------------------------------------------------------------------- /apps/compreview-cicd/words/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/package.json -------------------------------------------------------------------------------- /apps/compreview-cicd/words/palindrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/palindrome.js -------------------------------------------------------------------------------- /apps/compreview-cicd/words/tests/palindrome.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-cicd/words/tests/palindrome.test.js -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/Containerfile -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/build.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/package-lock.json -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/package.json -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/src/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/src/Server.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/src/entities/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/src/entities/Item.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/src/entities/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/src/entities/db.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/src/index.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/src/routes/Items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/src/routes/Items.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/src/routes/index.ts -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/tsconfig.json -------------------------------------------------------------------------------- /apps/compreview-todo/todo-backend/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-backend/tsconfig.prod.json -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/.gitignore -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/.npmrc -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/README.md: -------------------------------------------------------------------------------- 1 | # todo-ssr -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/index.js -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/package-lock.json -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/package.json -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/views/index.pug -------------------------------------------------------------------------------- /apps/compreview-todo/todo-ssr/views/items.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/compreview-todo/todo-ssr/views/items.pug -------------------------------------------------------------------------------- /apps/deploy-cli/weather-app/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-cli/weather-app/Containerfile -------------------------------------------------------------------------------- /apps/deploy-cli/weather-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-cli/weather-app/app.py -------------------------------------------------------------------------------- /apps/deploy-cli/weather-app/build_and_push_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-cli/weather-app/build_and_push_image.sh -------------------------------------------------------------------------------- /apps/deploy-cli/weather-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-cli/weather-app/requirements.txt -------------------------------------------------------------------------------- /apps/deploy-cli/weather-app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-cli/weather-app/setup.py -------------------------------------------------------------------------------- /apps/deploy-console/php-helloworld/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/php-helloworld/index.php -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/.containerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | Containerfile 4 | -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/Containerfile -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/README.adoc -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/build_and_push_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/build_and_push_image.sh -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/db.js -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/db_in_memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/db_in_memory.js -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/index.js -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/package-lock.json -------------------------------------------------------------------------------- /apps/deploy-console/todo-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-console/todo-list/package.json -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/.containerignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | Containerfile 4 | -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/Containerfile -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/README.adoc -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/build_and_push_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/build_and_push_image.sh -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/db.js -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/db_in_memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/db_in_memory.js -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/index.js -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/package-lock.json -------------------------------------------------------------------------------- /apps/deploy-review/todo-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deploy-review/todo-list/package.json -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/.gitignore -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/Dockerfile -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/README.md -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/pom.xml -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/Expense.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/Expense.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/ExpenseResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/ExpenseResource.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/ExpenseService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/ExpenseService.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/CrashResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/CrashResource.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/LivenessHealthResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/LivenessHealthResource.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/ReadinessHealthResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/ReadinessHealthResource.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/StateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/java/com/redhat/training/expense/health/StateService.java -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /apps/deployments-health/expense-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/deployments-health/expense-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/.gitignore -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/Containerfile -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/compose.yaml -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/mvnw -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/mvnw.cmd -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/pom.xml -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/src/main/java/ptl/redhat/com/springquotes/Quote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/src/main/java/ptl/redhat/com/springquotes/Quote.java -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/src/main/java/ptl/redhat/com/springquotes/SpringQuotesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/src/main/java/ptl/redhat/com/springquotes/SpringQuotesApplication.java -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/src/main/resources/application.yaml -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/src/test/java/ptl/redhat/com/springquotes/SpringQuotesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/src/test/java/ptl/redhat/com/springquotes/SpringQuotesApplicationTests.java -------------------------------------------------------------------------------- /apps/multicontainer-review/famous-quotes/src/test/resources/import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/multicontainer-review/famous-quotes/src/test/resources/import.csv -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/.containerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/.containerignore -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/.eslintrc.js -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/.npmrc -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/Containerfile -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/convert.js -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/index.js -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/package.json -------------------------------------------------------------------------------- /apps/pipelines-creation/exchange/tests/convert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-creation/exchange/tests/convert.test.js -------------------------------------------------------------------------------- /apps/pipelines-review/vertx-site/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-review/vertx-site/README.adoc -------------------------------------------------------------------------------- /apps/pipelines-review/vertx-site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-review/vertx-site/pom.xml -------------------------------------------------------------------------------- /apps/pipelines-review/vertx-site/src/main/java/com/redhat/vertx_site/MainVerticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-review/vertx-site/src/main/java/com/redhat/vertx_site/MainVerticle.java -------------------------------------------------------------------------------- /apps/pipelines-review/vertx-site/src/test/java/com/redhat/tests/VertxSiteTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/apps/pipelines-review/vertx-site/src/test/java/com/redhat/tests/VertxSiteTest.java -------------------------------------------------------------------------------- /books/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/.eslintrc -------------------------------------------------------------------------------- /books/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/.gitignore -------------------------------------------------------------------------------- /books/data/authors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/data/authors.js -------------------------------------------------------------------------------- /books/data/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/data/books.js -------------------------------------------------------------------------------- /books/exec/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/exec/www -------------------------------------------------------------------------------- /books/jenkins/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/jenkins/Jenkinsfile -------------------------------------------------------------------------------- /books/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/package-lock.json -------------------------------------------------------------------------------- /books/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/package.json -------------------------------------------------------------------------------- /books/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/public/stylesheets/style.css -------------------------------------------------------------------------------- /books/routes/authors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/routes/authors.js -------------------------------------------------------------------------------- /books/routes/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/routes/books.js -------------------------------------------------------------------------------- /books/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/routes/index.js -------------------------------------------------------------------------------- /books/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/server.js -------------------------------------------------------------------------------- /books/tests/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/tests/app_test.js -------------------------------------------------------------------------------- /books/views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/views/error.hbs -------------------------------------------------------------------------------- /books/views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/views/index.hbs -------------------------------------------------------------------------------- /books/views/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/books/views/layout.hbs -------------------------------------------------------------------------------- /container-build/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/container-build/Containerfile -------------------------------------------------------------------------------- /container-build/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/container-build/src/index.html -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/Dockerfile -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/README.md -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/java/com/redhat/training/model/Associate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/java/com/redhat/training/model/Associate.java -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/java/com/redhat/training/model/Expense.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/java/com/redhat/training/model/Expense.java -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/java/com/redhat/training/rest/ExpenseResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/java/com/redhat/training/rest/ExpenseResource.java -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/resources/META-INF/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/resources/META-INF/import.sql -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /deployments-applications/apps/expense-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-applications/apps/expense-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/Dockerfile -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/README.md -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/health/HealthSwitch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/health/HealthSwitch.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/health/LivenessCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/health/LivenessCheck.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/health/ReadinessCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/health/ReadinessCheck.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/model/Associate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/model/Associate.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/model/Expense.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/model/Expense.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/rest/ExpenseResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/rest/ExpenseResource.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/java/com/redhat/training/rest/HealthSwitchResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/java/com/redhat/training/rest/HealthSwitchResource.java -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/resources/META-INF/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/resources/META-INF/import.sql -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /deployments-review/apps/expense-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-review/apps/expense-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /deployments-strategy/apps/users-db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-strategy/apps/users-db/Dockerfile -------------------------------------------------------------------------------- /deployments-strategy/apps/users-db/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-strategy/apps/users-db/import.sh -------------------------------------------------------------------------------- /deployments-strategy/apps/users-db/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-strategy/apps/users-db/users.sql -------------------------------------------------------------------------------- /deployments-strategy/solutions/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/deployments-strategy/solutions/application.yaml -------------------------------------------------------------------------------- /go-hello/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/go-hello/app.go -------------------------------------------------------------------------------- /hello-java/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-java/Containerfile -------------------------------------------------------------------------------- /hello-java/app-src/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-java/app-src/pom.xml -------------------------------------------------------------------------------- /hello-java/app-src/src/main/java/com/redhat/training/openshift/hello/HelloResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-java/app-src/src/main/java/com/redhat/training/openshift/hello/HelloResource.java -------------------------------------------------------------------------------- /hello-java/app-src/src/main/java/com/redhat/training/openshift/hello/JaxRsActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-java/app-src/src/main/java/com/redhat/training/openshift/hello/JaxRsActivator.java -------------------------------------------------------------------------------- /hello-java/run-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-java/run-app.sh -------------------------------------------------------------------------------- /hello-world-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-world-nginx/Dockerfile -------------------------------------------------------------------------------- /hello-world-nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-world-nginx/index.html -------------------------------------------------------------------------------- /hello-world-nginx/nginxconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/hello-world-nginx/nginxconf.sed -------------------------------------------------------------------------------- /helm/charts/mariadb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/.helmignore -------------------------------------------------------------------------------- /helm/charts/mariadb/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/Chart.lock -------------------------------------------------------------------------------- /helm/charts/mariadb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/README.md -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/.helmignore -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/README.md -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_affinities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_affinities.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_capabilities.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_errors.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_images.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_ingress.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_labels.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_names.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_secrets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_secrets.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_storage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_storage.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_utils.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_utils.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/_warnings.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_cassandra.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_cassandra.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_mariadb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_mariadb.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_mongodb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_mongodb.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_mysql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_mysql.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_postgresql.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_postgresql.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_redis.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/templates/validations/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/templates/validations/_validations.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/charts/common/values.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/extra-list.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/networkpolicy-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/networkpolicy-egress.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/primary/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/primary/configmap.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/primary/initialization-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/primary/initialization-configmap.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/primary/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/primary/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/primary/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/primary/pdb.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/primary/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/primary/statefulset.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/primary/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/primary/svc.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/prometheusrules.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/role.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/secondary/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/secondary/configmap.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/secondary/networkpolicy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/secondary/networkpolicy-ingress.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/secondary/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/secondary/pdb.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/secondary/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/secondary/statefulset.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/secondary/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/secondary/svc.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/secrets.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/charts/mariadb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/values.schema.json -------------------------------------------------------------------------------- /helm/charts/mariadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/helm/charts/mariadb/values.yaml -------------------------------------------------------------------------------- /html-helloworld/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/html-helloworld/index.html -------------------------------------------------------------------------------- /images-ubi/apps/greetings/.containerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/apps/greetings/.containerignore -------------------------------------------------------------------------------- /images-ubi/apps/greetings/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/apps/greetings/Containerfile -------------------------------------------------------------------------------- /images-ubi/apps/greetings/LocalizationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/apps/greetings/LocalizationService.js -------------------------------------------------------------------------------- /images-ubi/apps/greetings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/apps/greetings/index.js -------------------------------------------------------------------------------- /images-ubi/apps/greetings/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/apps/greetings/package-lock.json -------------------------------------------------------------------------------- /images-ubi/apps/greetings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/apps/greetings/package.json -------------------------------------------------------------------------------- /images-ubi/solutions/greetings/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/images-ubi/solutions/greetings/Containerfile -------------------------------------------------------------------------------- /java-serverhost/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/java-serverhost/pom.xml -------------------------------------------------------------------------------- /java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/RestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/RestApplication.java -------------------------------------------------------------------------------- /java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java -------------------------------------------------------------------------------- /kubefiles/deploy-introduction/sample-node-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/kubefiles/deploy-introduction/sample-node-app.yaml -------------------------------------------------------------------------------- /kubefiles/deployments-health/project-dimensioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/kubefiles/deployments-health/project-dimensioning.yaml -------------------------------------------------------------------------------- /kubefiles/pipelines-review/clustertask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/kubefiles/pipelines-review/clustertask.yaml -------------------------------------------------------------------------------- /kubefiles/pipelines-review/gradedrun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/kubefiles/pipelines-review/gradedrun.yaml -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .odo -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/architecture-setup/hello-flask/devfile.yaml -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/architecture-setup/hello-flask/docker/Dockerfile -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/architecture-setup/hello-flask/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/architecture-setup/hello-flask/requirements.txt -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/architecture-setup/hello-flask/setup.py -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/architecture-setup/hello-flask/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/architecture-setup/hello-flask/src/app.py -------------------------------------------------------------------------------- /labs/compreview-cicd/npm-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-cicd/npm-task.yaml -------------------------------------------------------------------------------- /labs/compreview-cicd/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-cicd/pipeline.yaml -------------------------------------------------------------------------------- /labs/compreview-cicd/volume-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-cicd/volume-template.yaml -------------------------------------------------------------------------------- /labs/compreview-todo/README.txt: -------------------------------------------------------------------------------- 1 | This exercise has no lab files 2 | 3 | -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/.gitignore -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/.npmrc -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/Containerfile -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/README.md -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/nginx.conf -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/package-lock.json -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/package.json -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/public/favicon.ico -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/public/index.html -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/public/logo192.png -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/public/logo512.png -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/public/manifest.json -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/public/robots.txt -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/AlertMessage.tsx: -------------------------------------------------------------------------------- 1 | export function AlertMessage() {} 2 | -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/App.css -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/App.test.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/App.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/Loading.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/UserMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/UserMessage.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/index.css -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/index.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/items/Item.ts -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/ItemForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/items/ItemForm.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/ItemList.css: -------------------------------------------------------------------------------- 1 | .completed { 2 | text-decoration: line-through; 3 | } 4 | -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/ItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/items/ItemList.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/ItemPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/items/ItemPage.tsx -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/item-service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/items/item-service.test.ts -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/items/item-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/items/item-service.ts -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/logo.svg -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/src/setupTests.ts -------------------------------------------------------------------------------- /labs/compreview-todo/todo-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/compreview-todo/todo-frontend/tsconfig.json -------------------------------------------------------------------------------- /labs/deploy-cli/weather/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deploy-cli/weather/app.py -------------------------------------------------------------------------------- /labs/deploy-cli/weather/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deploy-cli/weather/devfile.yaml -------------------------------------------------------------------------------- /labs/deploy-cli/weather/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deploy-cli/weather/docker/Dockerfile -------------------------------------------------------------------------------- /labs/deploy-cli/weather/kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deploy-cli/weather/kubernetes/deploy.yaml -------------------------------------------------------------------------------- /labs/deploy-cli/weather/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deploy-cli/weather/requirements.txt -------------------------------------------------------------------------------- /labs/deploy-cli/weather/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deploy-cli/weather/setup.py -------------------------------------------------------------------------------- /labs/deployments-health/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/deployments-health/application.yaml -------------------------------------------------------------------------------- /labs/multicontainer-kustomize/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-kustomize/deployment.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/Chart.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/configmap.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/deployment.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/redis-persistent-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/redis-persistent-0.0.1.tgz -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/route.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/service.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/multicontainer-review/famous-quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/famous-quotes/values.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/kustomized-quotes/base/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/kustomized-quotes/base/app.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/kustomized-quotes/overlays/production/prod_dimensioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/kustomized-quotes/overlays/production/prod_dimensioning.yaml -------------------------------------------------------------------------------- /labs/multicontainer-review/kustomized-quotes/overlays/staging/staging_dimensioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/multicontainer-review/kustomized-quotes/overlays/staging/staging_dimensioning.yaml -------------------------------------------------------------------------------- /labs/pipelines-creation/npm-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/pipelines-creation/npm-task.yaml -------------------------------------------------------------------------------- /labs/pipelines-creation/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/pipelines-creation/pipeline.yaml -------------------------------------------------------------------------------- /labs/pipelines-creation/volume-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/pipelines-creation/volume-template.yaml -------------------------------------------------------------------------------- /labs/pipelines-review/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/pipelines-review/pipeline.yaml -------------------------------------------------------------------------------- /labs/pipelines-review/run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/pipelines-review/run.yaml -------------------------------------------------------------------------------- /labs/pipelines-review/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/labs/pipelines-review/task.yaml -------------------------------------------------------------------------------- /micro-java/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/.dockerignore -------------------------------------------------------------------------------- /micro-java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/.gitignore -------------------------------------------------------------------------------- /micro-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/pom.xml -------------------------------------------------------------------------------- /micro-java/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /micro-java/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /micro-java/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /micro-java/src/main/java/com/redhat/training/openshift/hello/HelloResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/main/java/com/redhat/training/openshift/hello/HelloResource.java -------------------------------------------------------------------------------- /micro-java/src/main/jkube/cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/main/jkube/cm.yml -------------------------------------------------------------------------------- /micro-java/src/main/jkube/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/main/jkube/deployment.yml -------------------------------------------------------------------------------- /micro-java/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /micro-java/src/test/java/com/redhat/training/openshift/hello/HelloResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/test/java/com/redhat/training/openshift/hello/HelloResourceTest.java -------------------------------------------------------------------------------- /micro-java/src/test/java/com/redhat/training/openshift/hello/NativeHelloResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/micro-java/src/test/java/com/redhat/training/openshift/hello/NativeHelloResourceIT.java -------------------------------------------------------------------------------- /movies/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/Jenkinsfile -------------------------------------------------------------------------------- /movies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/pom.xml -------------------------------------------------------------------------------- /movies/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/settings.xml -------------------------------------------------------------------------------- /movies/src/main/java/com/redhat/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/src/main/java/com/redhat/movies/Movie.java -------------------------------------------------------------------------------- /movies/src/main/java/com/redhat/movies/MoviesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/src/main/java/com/redhat/movies/MoviesApplication.java -------------------------------------------------------------------------------- /movies/src/main/java/com/redhat/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/src/main/java/com/redhat/movies/MoviesController.java -------------------------------------------------------------------------------- /movies/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.jackson.serialization.indent_output=true 2 | -------------------------------------------------------------------------------- /movies/src/test/java/com/redhat/movies/MoviesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/movies/src/test/java/com/redhat/movies/MoviesApplicationTests.java -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/.helmignore -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/Chart.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/NOTES.txt -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/expense-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/expense-deployment.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/expense-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/expense-route.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/expense-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/expense-svc.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/postgres-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/postgres-deployment.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/postgres-secret.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/templates/postgres-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/templates/postgres-svc.yaml -------------------------------------------------------------------------------- /multicontainer-helm/labs/expense-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/labs/expense-service/values.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/.helmignore -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/Chart.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/NOTES.txt -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/expense-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/expense-deployment.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/expense-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/expense-route.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/expense-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/expense-svc.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/postgres-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/postgres-deployment.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/postgres-secret.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/templates/postgres-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/templates/postgres-svc.yaml -------------------------------------------------------------------------------- /multicontainer-helm/solutions/expense-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/multicontainer-helm/solutions/expense-service/values.yaml -------------------------------------------------------------------------------- /mvn-offline-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/mvn-offline-mode.sh -------------------------------------------------------------------------------- /nexus3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/nexus3/Dockerfile -------------------------------------------------------------------------------- /nexus3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/nexus3/README.md -------------------------------------------------------------------------------- /nexus3/solo.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/nexus3/solo.json.erb -------------------------------------------------------------------------------- /nodejs-helloworld/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/nodejs-helloworld/app.js -------------------------------------------------------------------------------- /nodejs-helloworld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/nodejs-helloworld/package.json -------------------------------------------------------------------------------- /php-hello-dockerfile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/php-hello-dockerfile/Dockerfile -------------------------------------------------------------------------------- /php-hello-dockerfile/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/php-hello-dockerfile/index.php -------------------------------------------------------------------------------- /php-helloworld/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/php-helloworld/index.php -------------------------------------------------------------------------------- /php-scale/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/php-scale/index.php -------------------------------------------------------------------------------- /post-commit/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /probes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/probes/app.js -------------------------------------------------------------------------------- /probes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/probes/package.json -------------------------------------------------------------------------------- /quip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/quip/pom.xml -------------------------------------------------------------------------------- /quip/src/main/java/com/redhat/training/example/JaxRsActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/quip/src/main/java/com/redhat/training/example/JaxRsActivator.java -------------------------------------------------------------------------------- /quip/src/main/java/com/redhat/training/example/Quip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/quip/src/main/java/com/redhat/training/example/Quip.java -------------------------------------------------------------------------------- /quotes/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/quotes/get.php -------------------------------------------------------------------------------- /quotes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/quotes/index.php -------------------------------------------------------------------------------- /s2i-scripts/.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/s2i-scripts/.s2i/bin/assemble -------------------------------------------------------------------------------- /s2i-scripts/.s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/s2i-scripts/.s2i/bin/run -------------------------------------------------------------------------------- /s2i-scripts/index.html: -------------------------------------------------------------------------------- 1 | Hello Class! DO288 rocks!!! 2 | -------------------------------------------------------------------------------- /simple-pipeline/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/simple-pipeline/Jenkinsfile -------------------------------------------------------------------------------- /solutions/compreview-cicd/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-cicd/pipeline.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/Containerfile-frontend-solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/Containerfile-frontend-solution -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/.helmignore -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/Chart.lock -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/Chart.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/NOTES.txt -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/_helpers.tpl -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/deployment.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/hpa.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/ingress.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/service.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /solutions/compreview-todo/todo-list/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/compreview-todo/todo-list/values.yaml -------------------------------------------------------------------------------- /solutions/deploy-cli/weather-app/devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/deploy-cli/weather-app/devfile.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-kustomize/famous-kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-kustomize/famous-kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-kustomize/famous-kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - deployment.yaml 3 | -------------------------------------------------------------------------------- /solutions/multicontainer-kustomize/famous-kustomize/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-kustomize/famous-kustomize/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-kustomize/famous-kustomize/overlays/dev/replica_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-kustomize/famous-kustomize/overlays/dev/replica_limits.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-kustomize/famous-kustomize/overlays/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-kustomize/famous-kustomize/overlays/prod/kustomization.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-kustomize/famous-kustomize/overlays/prod/replica_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-kustomize/famous-kustomize/overlays/prod/replica_limits.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/Chart.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/charts/redis-persistent-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/charts/redis-persistent-0.0.1.tgz -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/templates/configmap.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/templates/deployment.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/templates/route.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/templates/service.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/famous-quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/famous-quotes/values.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/kustomized-quotes/base/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/kustomized-quotes/base/app.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/kustomized-quotes/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - app.yaml 3 | -------------------------------------------------------------------------------- /solutions/multicontainer-review/kustomized-quotes/overlays/production/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/kustomized-quotes/overlays/production/kustomization.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/kustomized-quotes/overlays/production/prod_dimensioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/kustomized-quotes/overlays/production/prod_dimensioning.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/kustomized-quotes/overlays/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/kustomized-quotes/overlays/staging/kustomization.yaml -------------------------------------------------------------------------------- /solutions/multicontainer-review/kustomized-quotes/overlays/staging/staging_dimensioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/multicontainer-review/kustomized-quotes/overlays/staging/staging_dimensioning.yaml -------------------------------------------------------------------------------- /solutions/pipelines-creation/npm-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/pipelines-creation/npm-task.yaml -------------------------------------------------------------------------------- /solutions/pipelines-creation/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/pipelines-creation/pipeline.yaml -------------------------------------------------------------------------------- /solutions/pipelines-review/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/pipelines-review/pipeline.yaml -------------------------------------------------------------------------------- /solutions/pipelines-review/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/solutions/pipelines-review/task.yaml -------------------------------------------------------------------------------- /todo-api-micro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/pom.xml -------------------------------------------------------------------------------- /todo-api-micro/src/main/fabric8/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/example/todoapi/rest/HelloWorldEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/example/todoapi/rest/HelloWorldEndpoint.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/example/todoapi/rest/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/example/todoapi/rest/Main.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/model/Host.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/model/Host.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/model/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/model/Item.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/rest/CORSRequestFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/rest/CORSRequestFilter.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/rest/CORSResponseFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/rest/CORSResponseFilter.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/rest/HostService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/rest/HostService.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/rest/ItemService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/rest/ItemService.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/rest/RestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/rest/RestApplication.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/java/com/redhat/training/ui/PaginatedListWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/java/com/redhat/training/ui/PaginatedListWrapper.java -------------------------------------------------------------------------------- /todo-api-micro/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /todo-api-micro/src/main/resources/modules/com/mysql/main/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/resources/modules/com/mysql/main/module.xml -------------------------------------------------------------------------------- /todo-api-micro/src/main/resources/project-defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/resources/project-defaults.yml -------------------------------------------------------------------------------- /todo-api-micro/src/main/resources/sql/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/resources/sql/create.sql -------------------------------------------------------------------------------- /todo-api-micro/src/main/resources/sql/drop.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `Item`; 2 | -------------------------------------------------------------------------------- /todo-api-micro/src/main/resources/sql/load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api-micro/src/main/resources/sql/load.sql -------------------------------------------------------------------------------- /todo-api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/.dockerignore -------------------------------------------------------------------------------- /todo-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/.gitignore -------------------------------------------------------------------------------- /todo-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/README.md -------------------------------------------------------------------------------- /todo-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/pom.xml -------------------------------------------------------------------------------- /todo-api/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /todo-api/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /todo-api/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /todo-api/src/main/java/com/redhat/training/openshift/todoapi/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/java/com/redhat/training/openshift/todoapi/Item.java -------------------------------------------------------------------------------- /todo-api/src/main/java/com/redhat/training/openshift/todoapi/ItemResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/java/com/redhat/training/openshift/todoapi/ItemResource.java -------------------------------------------------------------------------------- /todo-api/src/main/jkube/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo-api/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /todo-api/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-api/src/main/resources/application.properties -------------------------------------------------------------------------------- /todo-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /todo-backend/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/Containerfile -------------------------------------------------------------------------------- /todo-backend/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/build.ts -------------------------------------------------------------------------------- /todo-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/package-lock.json -------------------------------------------------------------------------------- /todo-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/package.json -------------------------------------------------------------------------------- /todo-backend/src/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/src/Server.ts -------------------------------------------------------------------------------- /todo-backend/src/entities/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/src/entities/Item.ts -------------------------------------------------------------------------------- /todo-backend/src/entities/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/src/entities/db.ts -------------------------------------------------------------------------------- /todo-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/src/index.ts -------------------------------------------------------------------------------- /todo-backend/src/routes/Items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/src/routes/Items.ts -------------------------------------------------------------------------------- /todo-backend/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/src/routes/index.ts -------------------------------------------------------------------------------- /todo-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/tsconfig.json -------------------------------------------------------------------------------- /todo-backend/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-backend/tsconfig.prod.json -------------------------------------------------------------------------------- /todo-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/.gitignore -------------------------------------------------------------------------------- /todo-frontend/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /todo-frontend/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/Containerfile -------------------------------------------------------------------------------- /todo-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/README.md -------------------------------------------------------------------------------- /todo-frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/nginx.conf -------------------------------------------------------------------------------- /todo-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/package-lock.json -------------------------------------------------------------------------------- /todo-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/package.json -------------------------------------------------------------------------------- /todo-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/public/favicon.ico -------------------------------------------------------------------------------- /todo-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/public/index.html -------------------------------------------------------------------------------- /todo-frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/public/logo192.png -------------------------------------------------------------------------------- /todo-frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/public/logo512.png -------------------------------------------------------------------------------- /todo-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/public/manifest.json -------------------------------------------------------------------------------- /todo-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/public/robots.txt -------------------------------------------------------------------------------- /todo-frontend/src/AlertMessage.tsx: -------------------------------------------------------------------------------- 1 | export function AlertMessage() {} 2 | -------------------------------------------------------------------------------- /todo-frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/App.css -------------------------------------------------------------------------------- /todo-frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/App.test.tsx -------------------------------------------------------------------------------- /todo-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/App.tsx -------------------------------------------------------------------------------- /todo-frontend/src/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/Loading.tsx -------------------------------------------------------------------------------- /todo-frontend/src/UserMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/UserMessage.tsx -------------------------------------------------------------------------------- /todo-frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/index.css -------------------------------------------------------------------------------- /todo-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/index.tsx -------------------------------------------------------------------------------- /todo-frontend/src/items/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/items/Item.ts -------------------------------------------------------------------------------- /todo-frontend/src/items/ItemForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/items/ItemForm.tsx -------------------------------------------------------------------------------- /todo-frontend/src/items/ItemList.css: -------------------------------------------------------------------------------- 1 | .completed { 2 | text-decoration: line-through; 3 | } 4 | -------------------------------------------------------------------------------- /todo-frontend/src/items/ItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/items/ItemList.tsx -------------------------------------------------------------------------------- /todo-frontend/src/items/ItemPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/items/ItemPage.tsx -------------------------------------------------------------------------------- /todo-frontend/src/items/item-service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/items/item-service.test.ts -------------------------------------------------------------------------------- /todo-frontend/src/items/item-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/items/item-service.ts -------------------------------------------------------------------------------- /todo-frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/logo.svg -------------------------------------------------------------------------------- /todo-frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /todo-frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /todo-frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/src/setupTests.ts -------------------------------------------------------------------------------- /todo-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-frontend/tsconfig.json -------------------------------------------------------------------------------- /todo-single/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/app.js -------------------------------------------------------------------------------- /todo-single/controllers/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/controllers/items.js -------------------------------------------------------------------------------- /todo-single/models/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/models/db.js -------------------------------------------------------------------------------- /todo-single/models/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/models/items.js -------------------------------------------------------------------------------- /todo-single/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/package.json -------------------------------------------------------------------------------- /todo-single/todo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/css/style.css -------------------------------------------------------------------------------- /todo-single/todo/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/hello.html -------------------------------------------------------------------------------- /todo-single/todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/index.html -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/angular-resource.min.js -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/angular.min.js -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/css/bootstrap.min.css -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/css/ng-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/css/ng-grid.min.css -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/jquery.min.js -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/ng-grid-2.0.11.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/ng-grid-2.0.11.min.js -------------------------------------------------------------------------------- /todo-single/todo/lib/dependencies/ui-bootstrap-tpls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/lib/dependencies/ui-bootstrap-tpls.min.js -------------------------------------------------------------------------------- /todo-single/todo/script/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-single/todo/script/item.js -------------------------------------------------------------------------------- /todo-ssr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-ssr/.gitignore -------------------------------------------------------------------------------- /todo-ssr/README.md: -------------------------------------------------------------------------------- 1 | # todo-ssr -------------------------------------------------------------------------------- /todo-ssr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-ssr/index.js -------------------------------------------------------------------------------- /todo-ssr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-ssr/package-lock.json -------------------------------------------------------------------------------- /todo-ssr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-ssr/package.json -------------------------------------------------------------------------------- /todo-ssr/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-ssr/views/index.pug -------------------------------------------------------------------------------- /todo-ssr/views/items.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/todo-ssr/views/items.pug -------------------------------------------------------------------------------- /trigger-builds/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ubi-echo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/ubi-echo/Dockerfile -------------------------------------------------------------------------------- /ubi-info/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/ubi-info/Dockerfile -------------------------------------------------------------------------------- /ubi-info/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/ubi-info/info.sh -------------------------------------------------------------------------------- /ubi-sleep/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO288-apps/HEAD/ubi-sleep/Dockerfile --------------------------------------------------------------------------------