├── .gitignore ├── README.md ├── jboss-docker-basics ├── 01-jboss-eap │ ├── Dockerfile │ └── installs │ │ └── README.md ├── 02-jboss-eap-with-app │ ├── Dockerfile │ └── app │ │ └── ticket-monster.war ├── 03-jboss-eap-on-openshift │ └── deployments │ │ └── ticket-monster.war ├── 04-jboss-eap-from-container-catalog-on-openshift │ ├── Dockerfile │ └── deployments │ │ └── ticket-monster.war ├── 05-httpd-from-container-catalog-on-openshift │ ├── Dockerfile │ └── config │ │ └── httpd.conf ├── README.md └── cleanup.sh ├── openshift-anwender ├── 00-delete-site.yml ├── 01-create-site.yml ├── README.md ├── ansible.cfg └── res │ └── wp-cli.phar ├── openshift-demo-project-01 ├── README.md ├── build_config_httpd.yaml ├── build_config_jboss-eap.yaml ├── deployment_config_app_latest.yaml ├── deployment_config_app_vX.yaml └── doc │ ├── openshift-demo-project-01.png │ ├── openshift-demo-project-02.png │ └── openshift-demo-project-03.png ├── openshift-resources ├── README.md ├── limit-range.json ├── persistent-volume-claim.yaml ├── persistent-volume-nfs.yaml └── resource-quota.json ├── opensourcerers.org ├── 00-delete-site.yml ├── 01-create-site.yml ├── README.md ├── ansible.cfg └── res │ └── wp-cli.phar └── websphere-liberty ├── Dockerfile ├── README.md ├── app └── Sample1.war ├── doc ├── 01_select_template.png ├── 02_fill_out_template_details.png ├── 03_template_creation_result.png ├── 04_build_running.png ├── 05_build_and_deployment_finished.png ├── 06_liberty_splashscreen.png ├── 09_demo_application.png ├── 20_webhook_trigger.png ├── 21_show_liberty_logs.png └── 22_show_liberty_terminal.png └── websphere-liberty-template.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.zip 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/README.md -------------------------------------------------------------------------------- /jboss-docker-basics/01-jboss-eap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/01-jboss-eap/Dockerfile -------------------------------------------------------------------------------- /jboss-docker-basics/01-jboss-eap/installs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/01-jboss-eap/installs/README.md -------------------------------------------------------------------------------- /jboss-docker-basics/02-jboss-eap-with-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/02-jboss-eap-with-app/Dockerfile -------------------------------------------------------------------------------- /jboss-docker-basics/02-jboss-eap-with-app/app/ticket-monster.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/02-jboss-eap-with-app/app/ticket-monster.war -------------------------------------------------------------------------------- /jboss-docker-basics/03-jboss-eap-on-openshift/deployments/ticket-monster.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/03-jboss-eap-on-openshift/deployments/ticket-monster.war -------------------------------------------------------------------------------- /jboss-docker-basics/04-jboss-eap-from-container-catalog-on-openshift/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/04-jboss-eap-from-container-catalog-on-openshift/Dockerfile -------------------------------------------------------------------------------- /jboss-docker-basics/04-jboss-eap-from-container-catalog-on-openshift/deployments/ticket-monster.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/04-jboss-eap-from-container-catalog-on-openshift/deployments/ticket-monster.war -------------------------------------------------------------------------------- /jboss-docker-basics/05-httpd-from-container-catalog-on-openshift/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/05-httpd-from-container-catalog-on-openshift/Dockerfile -------------------------------------------------------------------------------- /jboss-docker-basics/05-httpd-from-container-catalog-on-openshift/config/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/05-httpd-from-container-catalog-on-openshift/config/httpd.conf -------------------------------------------------------------------------------- /jboss-docker-basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/README.md -------------------------------------------------------------------------------- /jboss-docker-basics/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/jboss-docker-basics/cleanup.sh -------------------------------------------------------------------------------- /openshift-anwender/00-delete-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-anwender/00-delete-site.yml -------------------------------------------------------------------------------- /openshift-anwender/01-create-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-anwender/01-create-site.yml -------------------------------------------------------------------------------- /openshift-anwender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-anwender/README.md -------------------------------------------------------------------------------- /openshift-anwender/ansible.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openshift-anwender/res/wp-cli.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-anwender/res/wp-cli.phar -------------------------------------------------------------------------------- /openshift-demo-project-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/README.md -------------------------------------------------------------------------------- /openshift-demo-project-01/build_config_httpd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/build_config_httpd.yaml -------------------------------------------------------------------------------- /openshift-demo-project-01/build_config_jboss-eap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/build_config_jboss-eap.yaml -------------------------------------------------------------------------------- /openshift-demo-project-01/deployment_config_app_latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/deployment_config_app_latest.yaml -------------------------------------------------------------------------------- /openshift-demo-project-01/deployment_config_app_vX.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/deployment_config_app_vX.yaml -------------------------------------------------------------------------------- /openshift-demo-project-01/doc/openshift-demo-project-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/doc/openshift-demo-project-01.png -------------------------------------------------------------------------------- /openshift-demo-project-01/doc/openshift-demo-project-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/doc/openshift-demo-project-02.png -------------------------------------------------------------------------------- /openshift-demo-project-01/doc/openshift-demo-project-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-demo-project-01/doc/openshift-demo-project-03.png -------------------------------------------------------------------------------- /openshift-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-resources/README.md -------------------------------------------------------------------------------- /openshift-resources/limit-range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-resources/limit-range.json -------------------------------------------------------------------------------- /openshift-resources/persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-resources/persistent-volume-claim.yaml -------------------------------------------------------------------------------- /openshift-resources/persistent-volume-nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-resources/persistent-volume-nfs.yaml -------------------------------------------------------------------------------- /openshift-resources/resource-quota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/openshift-resources/resource-quota.json -------------------------------------------------------------------------------- /opensourcerers.org/00-delete-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/opensourcerers.org/00-delete-site.yml -------------------------------------------------------------------------------- /opensourcerers.org/01-create-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/opensourcerers.org/01-create-site.yml -------------------------------------------------------------------------------- /opensourcerers.org/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/opensourcerers.org/README.md -------------------------------------------------------------------------------- /opensourcerers.org/ansible.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opensourcerers.org/res/wp-cli.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/opensourcerers.org/res/wp-cli.phar -------------------------------------------------------------------------------- /websphere-liberty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/Dockerfile -------------------------------------------------------------------------------- /websphere-liberty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/README.md -------------------------------------------------------------------------------- /websphere-liberty/app/Sample1.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/app/Sample1.war -------------------------------------------------------------------------------- /websphere-liberty/doc/01_select_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/01_select_template.png -------------------------------------------------------------------------------- /websphere-liberty/doc/02_fill_out_template_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/02_fill_out_template_details.png -------------------------------------------------------------------------------- /websphere-liberty/doc/03_template_creation_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/03_template_creation_result.png -------------------------------------------------------------------------------- /websphere-liberty/doc/04_build_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/04_build_running.png -------------------------------------------------------------------------------- /websphere-liberty/doc/05_build_and_deployment_finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/05_build_and_deployment_finished.png -------------------------------------------------------------------------------- /websphere-liberty/doc/06_liberty_splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/06_liberty_splashscreen.png -------------------------------------------------------------------------------- /websphere-liberty/doc/09_demo_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/09_demo_application.png -------------------------------------------------------------------------------- /websphere-liberty/doc/20_webhook_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/20_webhook_trigger.png -------------------------------------------------------------------------------- /websphere-liberty/doc/21_show_liberty_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/21_show_liberty_logs.png -------------------------------------------------------------------------------- /websphere-liberty/doc/22_show_liberty_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/doc/22_show_liberty_terminal.png -------------------------------------------------------------------------------- /websphere-liberty/websphere-liberty-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianfaulhaber/openshift-v3-showcase/HEAD/websphere-liberty/websphere-liberty-template.json --------------------------------------------------------------------------------