Git Product home page Git Product logo

redhat-developer / vscode-openshift-tools Goto Github PK

View Code? Open in Web Editor NEW
89.0 9.0 52.0 428.91 MB

OpenShift extension for Visual Studio Code

Home Page: https://marketplace.visualstudio.com/items?itemName=redhat.vscode-openshift-connector

License: MIT License

TypeScript 95.42% JavaScript 0.71% HTML 1.00% Shell 0.02% SCSS 2.59% CSS 0.25%
openshift vscode-extension vscode kubernetes cloud hacktoberfest-accepted hacktoberfest odo

vscode-openshift-tools's People

Contributors

adietish avatar aditya-konarde avatar apupier avatar benoitf avatar datho7561 avatar dependabot[bot] avatar dgolovin avatar fbricon avatar girishramnani avatar github-actions[bot] avatar gorkem avatar jeffmaury avatar jessicajhee avatar jrichter1 avatar lgrossma avatar mohitsuman avatar msivasubramaniaan avatar nickboldt avatar odockal avatar ppatierno avatar rgrunber avatar robstryker avatar scottkurz avatar sudhirverma avatar vrubezhny avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vscode-openshift-tools's Issues

Consider using 'oc' to get information about odo objects in json format with `-o json`

This is must fix, because current odo release only can operate on active project/app/component and that means to build tree vscode extension has to set active/project/app/component multiple times. It works only for simple hierarchy where is only one project, one app and multiple components. As soon as hierarchy grows to several project with several apps each there would be several sub-trees building in parallel and that is when tree is getting messed up.

Examples:

  • odo project list' => oc get project -o json'
  • 'odo app list' => has no oc alternative, because aaplication names saved in ~/.kube/odo file to be used as labels and name suffixes for real OpenShift resources created by odo commands
  • odo list => can be build based on DeploymentConfig resources labels
  • odo url list =>can be build based on Route resources labels
  • odo storage list => oc get pvc -o json

Even better way to use -o jsonpath
oc get project -o jsonpath='{range .items[*]}{.metadata.name}{"|"}{.metadata.annotations.openshift\.io/display-name}{ "|"}{.metadata.annotations.openshift\.io/description}{"\n"}{end}' --no-headers=true

"OpenShift" tree is not telling the user what cluster it is listing

"OpenShift" tree is not telling the user what cluster it is listing, one has to know what cluster was selected as default cluster or what cluster you logged in via "oc" on the cmd-line.
This is even more confusing since the "Clusters" view can get out-of-sync if you login manually via oc to a different server: it wont loose it's children. You have to manually refresh to discover it.

steps:

  1. ASSERT: have at least 2 servers
  2. EXEC: in "Clusters" view: select server1 and pick "Set as current cluster"
  3. ASSERT: in "Clusters" view: selected server1 gets arrows and can be unfolded to show resources
  4. EXEC: in Terminal: use "oc login" to login into server2
  5. ASSERT: you're logged in into server2
  6. EXEC: in "OpenShift" view: hit refresh

Result:
"OpenShift" view shows your project on server2, "Clusters" view still looks as if server1 was your current cluster.

Btw. Since "Cluters" view is still thinking that server1 is the current cluster, it wont offer "set as current cluster" in the context menu. Refreshing the "Clusters" view helps though.

Provide meaningful README (especially steps to install into VSCode)

It would be great if the README would provide the steps on how to install this extension into VSCode. Currently a user that has no intimate knowledge on developing VSCode extensions has no clue how to achieve that.
Then a user that stumbles upon this repo would love to get some info on what this is and what it provides. Currently the README is just a stub.

Finalize the package id/name

in package.json the name reads "vscode-openshift-tools" while display name is "OpenShift Connector".
That would make the extensions id "redhat.vscode-openshift-tools".

Make the id more in lines with the display name, and mostly shorter if possible.

@mohitsuman , @dgolovin , thoughts?

Create 'odo' integration test

Test would verify extension commands can

  • execute odo commands without errors
  • parse odo commands output correctly

Test should watch odo nightly build location and run test for every new odo build.

Test should be executed on local OpenShift cluster.

Add structure to OpenShift Explorer context menus

Follow the same rules throughout all context menus in OpenShift explorer. Every menu should have at least three groups:

  • new commands
  • info commands
  • watch/push commands if applicable
  • delete command

View's Navigatio Menu:
image

Context Menu for a project item:
image

Context menu for Application item
image

Context menu for component node
**
image
**

'Connect to Cluster' command

There is only way to add new cluster to kubernetes view by using oc login https://clusterurl -u username in console. There should be command that would let do the same from vscode UI.

Allow to select and delete several clusters at once

Since I work for quite some time with different cdk's etc my list of local clusters is huge:
image

I'd love to be able to select them all and remove them at once. Currently this isn't possible, I have to do that one by one :(

Remove or fix (kubernetes) "Clusters" view in OpenShift tooling

"Clusters" view, that's contributed by the microsoft kubernetes extension, does not work with the cdk nor openshift online.
In the context of our OpenShift tooling for VSCode it's purpose is limited to select the server that shall be used to display ODO resources. It thus causes a bad/buggy/flawed impression to the user:

a noob user that has a kube config files already would ask himself:

  • "why is the cdk/openshift online server not listing anything?"
  • "why can't I add my openshift online server?"
  • "why can't I add my cdk server?"

I think that we should seriously consider replacing it by a much simpler view to select a server or fix the kube tooling.

Delete actions should be named 'Delete'

Now OpenShift explorer has:

  • Delete Component
  • Delete Application
  • Delete Project

in OpenShift Explorer context menus

All this actions should be named as Delete

Migrate to odo version with support --project/--app/--component to override current project/app/component

Current implementation have to use three commands to set active object before executing object specific command. That approach obviously does not work for multiple threads because threads can override each other. This for example leads to wrong OpenShift Explorer tree content for clusters with more than one projects with multiple applications each. Using oc/kubectl can help solve the problem, but in this case vscode-extension should know how to distinguish odo created objects form other ones using labels/annotations.

Support new 'odo catalog' commands

odo acatalog command changed to support new entity 'service' in odo model. Now odo catalog can list:

  • components as `odo catalog list components'
  • services as `odo catalog list services'

Add 'New Component from Example Git Repository' command

This command would allow to create example components from repositories mentioned in s2i builder image description.
Should appear as new command in Command Plette and as a quickpick item when called from OpenShift Application Explorer.

"OpenShift" tree should be below "Clusters" tree

the workflow using the "OpenShift (ODO)" view is to

  1. select a current cluster - which you do in in the "Clusters" view and then
  2. look at what this server holds in terms of "OpenShift (ODO)" resources.

In terms of mouse one thus currently has to skip "OpenShift" and go down to "Clusters" to select the server. Then back up to "OpenShift". The more "natural" flow would be to select the server in "Clusters" view, which is the 1st view that's shown, and then move your mouse further down to the "OpenShift" view to discover what this current cluster holds in terms of OpenShift resources.

Add OpenShift related context menus to SCM views container

Might be good place to show commands:

  1. Push
  2. Create OpenShift Component
"commands": [
      {
        "command": "openshift.project.deploy",
        "title": "New OpenShift Component",
        "category": "OpenShift"
      }
]

"menus": {
      "scm/sourceControl": [
        {
          "command": "openshift.project.deploy",
          "group": "navigation",
          "when": "scmProvider == git"
        }
      ]

Create fake odo implementation for unit testing

Implementation should understand odo commands and provide the same stdout output for testing. It should retain created object in configuration file and generate 'odo list' output based on saved objects to behave like real 'odo' cli.

Filter out update message from odo std output

If new odo version is available, stdout contains additional strings

---
A newer version of odo (version: 0.0.11) is available.
Update using your package manager, or run
curl https://raw.githubusercontent.com/redhat-developer/odo/master/scripts/install.sh | sh
to update manually, or visit https://github.com/redhat-developer/odo/releases
---

they should be filtered out before parsing.

Create 'Open' action to open component's URL in browser if created

oc get route -o jsonpath='{range .items[?(.metadata.labels.app\.kubernetes\.io/component-name=="$component-name"})]}{.spec.host}{"\n"}{end}'
will return host for $component-name.
if
oc get route -o jsonpath='{range .items[?(.metadata.labels.app\.kubernetes\.io/component-name=="$component-name"})]}{.spec.tls.termination}{"\n"}{end}'
is not empty then protocol is https otherwise http.

then use https://www.npmjs.com/package/opn to open final url.

if route is not present then, info message should notify user about that and give two options:

  • create urls and open
  • cancel

If create url is selected then 'openshift.url.create' command should be executed and then 'openshift.component.open' command called again.

Help user if nothing is listed and terminal tells you to log in

I tried listing the project in the resource tree, but it does not show anything. In the terminal I noticed the following output:

Please login to your server: 

oc login https://mycluster.mydomain.com
  • To me things are not obvious enough. One stumbles upon this output while refreshing repeatedly and noticing things moving in the output then.
  • Furthermore one discovers that one has to install an additional tool, oc.
  • Then things would be more user-friendly if "odo" would output the correct command (with correct url) right away instead of https://mycluster.mydomain.com

An idea that we discussed is to offer a "log in" cmd in the context menu.
Even more great would be if the tooling was doing that automatically and prompt the user to provide pw/token?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.