-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
odo list showing a duplicate entry of devfile component #4144
Comments
This PR fixes effects of redhat-developer/odo#4144 in Application Explorer View by filtering s2i components without spec.sourceType. Signed-off-by: Denis Golovin dgolovin@redhat.com
* Workaround for odo issue #4144 This PR fixes effects of redhat-developer/odo#4144 in Application Explorer View by filtering s2i components without spec.sourceType. Signed-off-by: Denis Golovin dgolovin@redhat.com
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
@girishramnani this is still replicable in 2.0.2 |
Sadly this is not included in 2.0.2. |
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
verified that issue is fixed in 2.0.3 with redhat-developer/intellij-openshift-connector#251 |
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
* updated to odo 2.0.1 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * added assert to verify odo issues redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * added assert to verify odo issues redhat-developer/odo#4136 and redhat-developer/odo#4144 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * updated to 2.0.2 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * updated to 2.0.3 Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * added tooltip when devfile is detected in context. Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * Deactivate Link for devfile components Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * fix tests Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * Improved error handling Signed-off-by: Stephane Bouchet <sbouchet@redhat.com> * cleanup workflow and fix test Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
/kind bug
What versions of software are you using?
Operating System:
**Output of
odo version
: odo masterHow did you run odo exactly?
Actual behavior
as well as --app new-app
Expected behavior
Any logs, error output, etc?
This has been happening after the #4007
And the reason is
https://github.com/openshift/odo/blob/b1245a533788614a7430b086b663b3a24e3f777f/pkg/component/component.go#L859
List
function code in component code lists both deployment and deployment Configs. This was done to make theodo app
implementation streamlined. But due to thisodo list
fetches deployment while it tries to fetch the devfile components and then again fetches deployments and DCs when it lists the components.Ideally I would prefer that we add a ComponentVersion in the
Component
struct so that I can filter out which components are devfile vs S2I as that is still relavent information thatodo list
cares about.The text was updated successfully, but these errors were encountered: