-
Notifications
You must be signed in to change notification settings - Fork 32
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
feat(Jetbrains-Gateway): Specify IDE Version or Latest #217
Comments
I am not sure if Jetbrians has a handy api to fetch the latest versions and build number. |
I found one! Shows all (recent) versions as well as a marker for the latest! https://data.services.jetbrains.com/help-versions?product=go |
This doesn't list the build number that is needed to construct the download URL. |
Well shoot, I'll keep looking... |
This one looks promising! We can change the |
So we should be able to get the items using and HTTP provider. |
Looks like it, I'm wondering if we should default to the latest version and allow end users to optionally specify a specific version? |
Default to fetch will slow down builds and not work for air gapped environments. |
Ok, so can we trigger the HTTP query pragmatically after the workspace owner selects and IDE and if they want the latest version? I'm not familiar enough with Terraform yet to know the inner workings of data access like that. I also found this endpoint that will only provide the latest release, but we would need to call it for each IDE. Does this module even work in air gapped systems? Coder would need internet access to download the IDE anyways. |
Air-gapped solutions would self-host terraform modules. But i like the idea that you can select for "latest" and it would dynamically look it up. |
Actually, I am not sure how air-gapped solutions would allow for JetBrains download in the first place. 😆. You would have to pre-install the idea on the running workspace. |
That's kind of what I was getting at... But if you are on an air gapped system with a pre-installed IDE, wouldn't it be easier to manually specify the Gateway link to match the version than to match what is specified in this module? IMHO I don't think this module is useful in an air gapped system. |
#226 addresses points 2 and 3 but needs to handle 1. I need help finding an easy way to get details of a specific version. It can be done with parsing and some regex matching. So, reopening this issue. if anyone wants to do that. |
I found this endpoint that will return the info for a specific release/eap version. https://data.services.jetbrains.com/products?code=GO&type=release&majorVersion=2024.1 |
Great. This would work. |
I would like to request an option to use a specific or
latest
version of the selected IDE.For example:
2024.1
to use the2024.1
version of the IDE.latest
and upon startup of the workspace the latest version of the selected IDE will be discovered and utilized. If a new version is released, we simply would need to restart the workspace to link the new version.The text was updated successfully, but these errors were encountered: