Hide Forgot
Description of problem: Try to start a new STI build in web console with imagestream "jboss-eap64-openshift:latest" or "jboss-webserver30-tomcat8-openshift:latest", it turns out that no sampleRepo is available. Version-Release number of selected component (if applicable): Online INT/STG/PROD 3.3 How reproducible: Always Steps to Reproduce: 1. In web console, start a new build with imagestream "jboss-eap64-openshift:latest" or "jboss-webserver30-tomcat8-openshift:latest", and check if there is a sampleRepo we can use directly. Actual results: 1. No available sampleRepo was shown under "Git Repository URL". $ oc get is jboss-eap64-openshift -n openshift -o json ...... { "name": "latest", "annotations": { "description": "JBoss EAP 6.4 S2I images.", "iconClass": "icon-jboss", "tags": "builder,eap,javaee,java,jboss,xpaas" }, "from": { "kind": "DockerImage", "name": "registry.ops.openshift.com/jboss-eap-6/eap64-openshift:latest" }, "generation": 2, "importPolicy": {} } $ oc get is jboss-webserver30-tomcat8-openshift -n openshift -o json ...... { "name": "latest", "annotations": { "description": "JBoss Web Server 3.0 Tomcat 8 S2I images.", "iconClass": "icon-jboss", "tags": "builder,tomcat,tomcat8,java,jboss,xpaas" }, "from": { "kind": "DockerImage", "name": "registry.ops.openshift.com/jboss-webserver-3/webserver30-tomcat8-openshift:latest" }, "generation": 2, "importPolicy": {} } Expected results: 1. There should be a sampleRepo we can directly use.
This might be an online-specific configuration issue. Our image streams are defined here: https://github.com/openshift/online/blob/master/templates/image-streams.json
This is part of the current 3.4 upgrade to INT. Removing the UpcomingRelease keyword as we would like to track this fix and move it to ON_QA once ready for testing.
"sampleRepo" has been added to these 2 imagestream. Move this bug to verified. $ oc get is jboss-eap64-openshift -n openshift -o json { "name": "latest", "annotations": { "description": "JBoss EAP 6.4 S2I images.", "iconClass": "icon-jboss", "sampleContextDir": "kitchensink", "sampleRef": "6.4.x", "sampleRepo": "https://github.com/jboss-developer/jboss-eap-quickstarts.git", $ oc get is jboss-webserver30-tomcat8-openshift -n openshift -o json { "name": "latest", "annotations": { "description": "JBoss Web Server 3.0 Tomcat 8 S2I images.", "iconClass": "icon-jboss", "sampleContextDir": "tomcat-websocket-chat", "sampleRepo": "https://github.com/jboss-openshift/openshift-quickstarts.git",