Skip to content

openshift-qe/openshift-jee-sample

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note: Git is a prereq

  1. Download the openshift-origin-client-tools for your OS: https://github.com/openshift/origin/releases/tag/v3.6.1

  2. Fork this repo: https://github.com/danmcp/openshift-jee-sample

  3. git clone https://github.com/<userid>/openshift-jee-sample.git

  4. cd openshift-jee-sample

  5. Login to web console

  6. Create a project and give it a unique name

  7. Open Metrics URL and accept the cert warnings

  8. Add To Project -> Browse Catalog -> Java -> Red Hat JBoss EAP -> Red Hat JBoss EAP 7.0

    • Name: somethingcool
    • Git Repository URL: https://github.com/<userid>/openshift-jee-sample.git
    • Blank out Git Reference and Context Dir
  9. oc login

  10. oc set env dc/somethingcool AUTO_DEPLOY_EXPLODED=true

  11. oc get pods

  12. oc rsync target/SampleApp.war/ <pod_name>:/deployments/SampleApp.war --watch

  13. Browse to SampleApp/HelloWorld

  14. Make a change to HelloWorld and/or HelloWorldHelper.java

  15. Browse to SampleApp/HelloWorld

  16. oc set env dc/somethingcool DEBUG=true

  17. oc get pods

  18. oc port-forward <pod_name> 8787:8787

  19. oc rsync target/SampleApp.war/ <pod_name>:/deployments/SampleApp.war

  20. Set a break point and browse to SampleApp/HelloWorld

  21. Change danmcp in pipeline.yaml to be your github login

  22. oc create -f https://raw.githubusercontent.com/<userid>/openshift-jee-sample/master/pipeline.yaml

  23. Modify Jenkinsfile inside of node(maven):

       //stage('build') {
       //  git url: "https://github.com/<userid>/openshift-jee-sample.git"
       //  openshiftBuild(buildConfig: 'somethingcool', showBuildLogs: 'true')
       //}
       stage('test') {
         git url: "https://github.com/<userid>/openshift-jee-sample.git"
         //sh "mvn verify"
         sh "mvn clean"
       }
       stage('approval') {
         input "Approve?"
       }
       stage('deploy') {
         openshiftDeploy(deploymentConfig: 'somethingcool')
       }
       stage('scale') {
         openshiftScale(deploymentConfig: 'somethingcool', replicaCount: '2')
       }
       stage('system test') {
         //sh "sleep 10"
         sh "curl http://somethingcool:8080 | grep WildFly"
       }
    
  24. git add .

  25. git commit -m 'Adding stages'

  26. git push origin master

About

A sample app to be deployed on openshift environments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 85.7%
  • Java 11.3%
  • Shell 3.0%