[JBoss JIRA] (JBIDE-14122) Add VJET to Central
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14122?page=com.atlassian.jira.plugi... ]
Denis Golovin commented on JBIDE-14122:
---------------------------------------
There is another problem. In vJet org.eclipse.jetty.* have open version range 8.1.3 and up. It would all be fine, but Kepler has two versions of jetty 8.1.9 and 9.0.0. In case of Kepler installation goes fine, but if you try to compile vJet it compiles with errors, because compilation picks up jetty 9.0.0 which has incompatible changes. What is going to happen at runtime are errors related to missing classes.
Basically to work under Kepler vJet should have closed range [8.1.3,9.0.0) for jetty bundles instead of open one.
> Add VJET to Central
> -------------------
>
> Key: JBIDE-14122
> URL: https://issues.jboss.org/browse/JBIDE-14122
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: central, target-platform
> Affects Versions: 4.1.0.Beta1
> Reporter: Victor Rubezhny
> Assignee: Victor Rubezhny
> Fix For: 4.1.0.Beta1
>
> Attachments: installing-vjet-from-jbt-mirrors.png, installing-vjet-from-jbt-mirrors2.png, installing-vjet-from-jbt-mirrors3-problem-with-junit4.png, installing-vjet-from-jbt-mirrors4-success.png, installing-vjet-from-jbt-mirrors5-problem-with-junit4-SOLVED.png, JBIDE14122-central-with-vjet.png
>
>
> We should provide an ability to install VJET v.0.10 through Central
> The latest stable VJET Update Site: [http://download.eclipse.org/vjet/updates-0.10] - v.0.10.0, Released
> The following dependencies (in addition to what we already have in TP) are to be satisfied in order to run VJet:
> {code:title=Orbit bundles for VJET}
> <unit id="org.apache.xml.serializer" version="2.7.1.v201005080400"/>
> <unit id="org.apache.xml.resolver" version="1.2.0.v201005080400"/>
> <unit id="org.apache.batik.css" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.css.source" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.dom" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.dom.source" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.util" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.util.source" version="1.7.0.v201011041433"/>
> <unit id="org.apache.xerces" version="2.9.0.v201101211617"/>
> <unit id="org.ccil.cowan.tagsoup" version="1.2.0.v201202211000"/>
> <unit id="org.w3c.css.sac" version="1.3.1.v200903091627"/>
> <unit id="org.w3c.css.sac.source" version="1.3.1.v200903091627"/>
> <unit id="org.w3c.dom.svg" version="1.1.0.v201011041433"/>
> <unit id="org.w3c.dom.svg.source" version="1.1.0.v201011041433"/>
> <unit id="javax.xml" version="1.3.4.v201005080400"/>
> <unit id="org.apache.commons.collections" version="3.2.0.v2013030210310"/>
> <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBIDE-14342) I dont get credentials reported when I create a jenkins initially (when creating an app)
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14342?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-14342 at 4/30/13 5:09 PM:
-------------------------------------------------------------------
Reopening since it turned out that the issue is not in the OpenShift broker (https://bugzilla.redhat.com/show_bug.cgi?id=958113 is not a bug, I closed it) but in JBoss Tools:
The cause for this issue is in the CreateApplicationJob which is responsible for creating all applications on OpenShift from JBoss Tooks. The job timeouts in many cases (apparently the timing in OpenShift further degrade) and it then tries to refresh and retries if the app isn't listed yet:
{code:title=CreateApplicationJob}
@Override
protected IStatus doRun(IProgressMonitor monitor) {
try {
try {
this.application = domain.createApplication(name, cartridge, scale, gear);
} catch (OpenShiftTimeoutException e) {
this.application = refreshAndCreateApplication(monitor);
}
private IApplication refreshAndCreateApplication(IProgressMonitor monitor) throws OpenShiftException {
if (monitor.isCanceled()) {
return null;
}
IApplication application = null;
do {
try {
domain.refresh();
application = domain.getApplicationByName(name);
if (application == null) {
// app is not created yet, try again
application = domain.createApplication(name, cartridge, scale, gear);
}
} catch (OpenShiftTimeoutException ex) {
// ignore
}
} while (application == null
&& openKeepTryingDialog()
&& !monitor.isCanceled());
return application;
}
{code}
When timeouting and refreshing it'll get the application that was created but loose the creation log since the log is only reported for the initial request (not for the refresh).
The only solution I currently see is to increase the timeouts.
was (Author: adietish):
reopening since it turned out that the issue is not in the OpenShift broker (https://bugzilla.redhat.com/show_bug.cgi?id=958113 is not a bug, I closed it) but in JBoss Tools:
The cause for this issue is in the CreateApplicationJob which is responsible for creating all applications on OpenShift from JBoss Tooks. The job timeouts in many cases (apparently the timing in OpenShift further degrade) and it then tries to refresh and retries if the app isn't listed yet:
{code:title=CreateApplicationJob}
@Override
protected IStatus doRun(IProgressMonitor monitor) {
try {
try {
this.application = domain.createApplication(name, cartridge, scale, gear);
} catch (OpenShiftTimeoutException e) {
this.application = refreshAndCreateApplication(monitor);
}
private IApplication refreshAndCreateApplication(IProgressMonitor monitor) throws OpenShiftException {
if (monitor.isCanceled()) {
return null;
}
IApplication application = null;
do {
try {
domain.refresh();
application = domain.getApplicationByName(name);
if (application == null) {
// app is not created yet, try again
application = domain.createApplication(name, cartridge, scale, gear);
}
} catch (OpenShiftTimeoutException ex) {
// ignore
}
} while (application == null
&& openKeepTryingDialog()
&& !monitor.isCanceled());
return application;
}
{code}
> I dont get credentials reported when I create a jenkins initially (when creating an app)
> ----------------------------------------------------------------------------------------
>
> Key: JBIDE-14342
> URL: https://issues.jboss.org/browse/JBIDE-14342
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Priority: Critical
> Fix For: 4.1.0.Beta1
>
> Attachments: correct-creation-log.png, no-information-from-openshift.png, null-creation-log.png
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBIDE-14354) I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14354?page=com.atlassian.jira.plugi... ]
Andre Dietisheim closed JBIDE-14354.
------------------------------------
closing since there's nothig for QE to verify
> I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
> --------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-14354
> URL: https://issues.jboss.org/browse/JBIDE-14354
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Priority: Critical
> Fix For: 4.1.0.Beta1
>
> Attachments: correct-creation-log.png, no-information-from-openshift.png, null-creation-log.png
>
>
> # EXEC: launch the OpenShift application wizard
> # EXEC: in the embedded cartridges, check jenkins-client
> # ASSERT: you get a dialog that tells you that you have to create a jenkins application
> # EXEC: hit "Apply"
> # ASSERT: you get prompted to provide a name for the jenkins application
> # EXEC: provide some name
> # ASSERT: wait until you get the creation log presented in a dialog
> Result:
> The dialogs shows *null*
> !null-creation-log.png!
> Expected:
> The creation log dialog prints the IP, username and password for your jenkins instance
> !correct-creation-log.png!
> Workaround:
> * embed jenkins-client afterwards by picking *Edit Embeddable Cartridges* in the context menu of your application in the OpenShift Explorer
> =OR=
> * look the credentials up in the environment variables by picking *Environament Variables* in the context menu of your application in OpenShift Explorer
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBTIS-70) JBTIS Kepler component content
by Paul Leacu (JIRA)
[ https://issues.jboss.org/browse/JBTIS-70?page=com.atlassian.jira.plugin.s... ]
Paul Leacu updated JBTIS-70:
----------------------------
Description:
Welcome to Kepler.
JBTIS 4.1.0/JBDSIS 7.0.0 is now available on master/trunk. This is needed for JBDS 7.0 in SOA-P 6.0 Beta. Please build your component for Kepler and update your contribution to the integration stack. The release procedure is here:
https://community.jboss.org/wiki/IntegrationToolingReleaseProcess
The specific files to change are:
https://github.com/jbosstools/jbosstools-integration-stack/blob/master/jb...
https://github.com/jbosstools/jbosstools-integration-stack/blob/master/jb...
https://github.com/jbosstools/jbosstools-integration-stack/blob/master/de...
https://github.com/jbosstools/jbosstools-integration-stack/blob/master/de...
The Kepler JBTIS target platform is here:
https://repository.jboss.org/nexus/content/repositories/snapshots/org/jbo...
I'll process the PR and regenerate the aggregate update site.
Thanks!
--paull
> JBTIS Kepler component content
> ------------------------------
>
> Key: JBTIS-70
> URL: https://issues.jboss.org/browse/JBTIS-70
> Project: JBoss Tools Integration Stack
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: BPEL, BPMN2, drools/ jBPM5, ESB, Fuse IDE, modeshape, savara, switchyard, teiid
> Affects Versions: 4.1.0
> Reporter: Paul Leacu
> Assignee: Paul Leacu
> Fix For: 4.1.0
>
>
> Welcome to Kepler.
> JBTIS 4.1.0/JBDSIS 7.0.0 is now available on master/trunk. This is needed for JBDS 7.0 in SOA-P 6.0 Beta. Please build your component for Kepler and update your contribution to the integration stack. The release procedure is here:
> https://community.jboss.org/wiki/IntegrationToolingReleaseProcess
> The specific files to change are:
> https://github.com/jbosstools/jbosstools-integration-stack/blob/master/jb...
> https://github.com/jbosstools/jbosstools-integration-stack/blob/master/jb...
> https://github.com/jbosstools/jbosstools-integration-stack/blob/master/de...
> https://github.com/jbosstools/jbosstools-integration-stack/blob/master/de...
> The Kepler JBTIS target platform is here:
> https://repository.jboss.org/nexus/content/repositories/snapshots/org/jbo...
> I'll process the PR and regenerate the aggregate update site.
> Thanks!
> --paull
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBIDE-14122) Add VJET to Central
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14122?page=com.atlassian.jira.plugi... ]
Denis Golovin commented on JBIDE-14122:
---------------------------------------
@[~nickboldt]: It is able to continue, but the problem is in injecting newer version for some features, that are not the same as released as part of Kepler. I suppose some plugins are singletons referenced with strict version range and cannot be removed.
> Add VJET to Central
> -------------------
>
> Key: JBIDE-14122
> URL: https://issues.jboss.org/browse/JBIDE-14122
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: central, target-platform
> Affects Versions: 4.1.0.Beta1
> Reporter: Victor Rubezhny
> Assignee: Victor Rubezhny
> Fix For: 4.1.0.Beta1
>
> Attachments: installing-vjet-from-jbt-mirrors.png, installing-vjet-from-jbt-mirrors2.png, installing-vjet-from-jbt-mirrors3-problem-with-junit4.png, installing-vjet-from-jbt-mirrors4-success.png, installing-vjet-from-jbt-mirrors5-problem-with-junit4-SOLVED.png, JBIDE14122-central-with-vjet.png
>
>
> We should provide an ability to install VJET v.0.10 through Central
> The latest stable VJET Update Site: [http://download.eclipse.org/vjet/updates-0.10] - v.0.10.0, Released
> The following dependencies (in addition to what we already have in TP) are to be satisfied in order to run VJet:
> {code:title=Orbit bundles for VJET}
> <unit id="org.apache.xml.serializer" version="2.7.1.v201005080400"/>
> <unit id="org.apache.xml.resolver" version="1.2.0.v201005080400"/>
> <unit id="org.apache.batik.css" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.css.source" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.dom" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.dom.source" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.util" version="1.7.0.v201011041433"/>
> <unit id="org.apache.batik.util.source" version="1.7.0.v201011041433"/>
> <unit id="org.apache.xerces" version="2.9.0.v201101211617"/>
> <unit id="org.ccil.cowan.tagsoup" version="1.2.0.v201202211000"/>
> <unit id="org.w3c.css.sac" version="1.3.1.v200903091627"/>
> <unit id="org.w3c.css.sac.source" version="1.3.1.v200903091627"/>
> <unit id="org.w3c.dom.svg" version="1.1.0.v201011041433"/>
> <unit id="org.w3c.dom.svg.source" version="1.1.0.v201011041433"/>
> <unit id="javax.xml" version="1.3.4.v201005080400"/>
> <unit id="org.apache.commons.collections" version="3.2.0.v2013030210310"/>
> <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBIDE-14354) I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14354?page=com.atlassian.jira.plugi... ]
Andre Dietisheim resolved JBIDE-14354.
--------------------------------------
Fix Version/s: 4.1.0.Beta1
(was: 4.1.x)
Resolution: Done
resolving/closing this since there's no broker/OpenShift issue to watch (I closed https://bugzilla.redhat.com/show_bug.cgi?id=958113). The issue is in JBoss Tools. Reopening JBIDE-14342
> I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
> --------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-14354
> URL: https://issues.jboss.org/browse/JBIDE-14354
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Priority: Critical
> Fix For: 4.1.0.Beta1
>
> Attachments: correct-creation-log.png, no-information-from-openshift.png, null-creation-log.png
>
>
> # EXEC: launch the OpenShift application wizard
> # EXEC: in the embedded cartridges, check jenkins-client
> # ASSERT: you get a dialog that tells you that you have to create a jenkins application
> # EXEC: hit "Apply"
> # ASSERT: you get prompted to provide a name for the jenkins application
> # EXEC: provide some name
> # ASSERT: wait until you get the creation log presented in a dialog
> Result:
> The dialogs shows *null*
> !null-creation-log.png!
> Expected:
> The creation log dialog prints the IP, username and password for your jenkins instance
> !correct-creation-log.png!
> Workaround:
> * embed jenkins-client afterwards by picking *Edit Embeddable Cartridges* in the context menu of your application in the OpenShift Explorer
> =OR=
> * look the credentials up in the environment variables by picking *Environament Variables* in the context menu of your application in OpenShift Explorer
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBIDE-14354) I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14354?page=com.atlassian.jira.plugi... ]
RH Bugzilla Integration commented on JBIDE-14354:
-------------------------------------------------
Andre Dietisheim <adietish(a)redhat.com> changed the Status of [bug 958113|https://bugzilla.redhat.com/show_bug.cgi?id=958113] from NEW to CLOSED
> I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
> --------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-14354
> URL: https://issues.jboss.org/browse/JBIDE-14354
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Priority: Critical
> Fix For: 4.1.x
>
> Attachments: correct-creation-log.png, no-information-from-openshift.png, null-creation-log.png
>
>
> # EXEC: launch the OpenShift application wizard
> # EXEC: in the embedded cartridges, check jenkins-client
> # ASSERT: you get a dialog that tells you that you have to create a jenkins application
> # EXEC: hit "Apply"
> # ASSERT: you get prompted to provide a name for the jenkins application
> # EXEC: provide some name
> # ASSERT: wait until you get the creation log presented in a dialog
> Result:
> The dialogs shows *null*
> !null-creation-log.png!
> Expected:
> The creation log dialog prints the IP, username and password for your jenkins instance
> !correct-creation-log.png!
> Workaround:
> * embed jenkins-client afterwards by picking *Edit Embeddable Cartridges* in the context menu of your application in the OpenShift Explorer
> =OR=
> * look the credentials up in the environment variables by picking *Environament Variables* in the context menu of your application in OpenShift Explorer
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months
[JBoss JIRA] (JBIDE-14354) I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14354?page=com.atlassian.jira.plugi... ]
RH Bugzilla Integration commented on JBIDE-14354:
-------------------------------------------------
Andre Dietisheim <adietish(a)redhat.com> made a comment on [bug 958113|https://bugzilla.redhat.com/show_bug.cgi?id=958113]
Talking to Abishek and further investigating I found out that the problem is not in the broker but in JBoss Tools.
It is caused by a background thread that is responsible for creating the application but timeouts. It would then refresh to make sure the application wasn't created yet and keep trying to create it otherwise.
Apparently the issue started to appear when the timing on OpenShift further degraded. I was somehow fooled by the requests I catched, sorry!
> I dont get credentials reported when I create a jenkins initially (when creating an app) (WATCHER ISSUE)
> --------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-14354
> URL: https://issues.jboss.org/browse/JBIDE-14354
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Priority: Critical
> Fix For: 4.1.x
>
> Attachments: correct-creation-log.png, no-information-from-openshift.png, null-creation-log.png
>
>
> # EXEC: launch the OpenShift application wizard
> # EXEC: in the embedded cartridges, check jenkins-client
> # ASSERT: you get a dialog that tells you that you have to create a jenkins application
> # EXEC: hit "Apply"
> # ASSERT: you get prompted to provide a name for the jenkins application
> # EXEC: provide some name
> # ASSERT: wait until you get the creation log presented in a dialog
> Result:
> The dialogs shows *null*
> !null-creation-log.png!
> Expected:
> The creation log dialog prints the IP, username and password for your jenkins instance
> !correct-creation-log.png!
> Workaround:
> * embed jenkins-client afterwards by picking *Edit Embeddable Cartridges* in the context menu of your application in the OpenShift Explorer
> =OR=
> * look the credentials up in the environment variables by picking *Environament Variables* in the context menu of your application in OpenShift Explorer
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 7 months