-
Notifications
You must be signed in to change notification settings - Fork 159
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
Find another source for versions list other than the artifact API #4417
Comments
Pinging @elastic/elastic-agent (Team:Elastic-Agent) |
I missed that fact that the elastic-agent repository has only versions >=8.3.2. For previous versions (e.g. 7.17.* we test against) we would need the Beats repository. So, it seems required that we git clone the Beats repository and list the tags there. If we're planning to diverge agent releases with Beats releases in the future, it's not going to work. @cmacknz any thoughts/ideas? |
At this point we can use the GH API for listing the releases, we can get those without cloning any additional repo, it should be easy to have a nice github client set up on a nodejs linux runner (or something like it) to run a couple of queries on the releases endpoint of both beats and elastic-agent repositories |
@pchila how does it solve the problem of having diverged releases with Beats? |
@rdner it solves the problem of making an additional clone, querying the Github API does not require cloning a new repo just to fetch the tags. |
There is a product versions API that lists every version ever made available for download. https://www.elastic.co/api/product_versions That will have 7.17 in it, and might be easier than dealing with the Git tags and releases. |
I think we will still need to use the artifacts API to know which snapshots exist. There is always a couple of days (maybe more) between the release of a minor and the creation of the snapshot for the next minor. Although in that case the tests will just fail for the update PR until the snapshot exists so maybe we don't care. |
Found that Kibana is using https://www.elastic.co/api/product_versions for getting agent versions: Although, I would prefer to use a product ID ( |
Describe the enhancement:
In the automation that updates the version file https://github.com/elastic/elastic-agent/blob/main/.github/workflows/bump-agent-versions.yml
We use the mage target that fetches all the available versions from the artifact API and filters them out based on set requirements:
elastic-agent/magefile.go
Lines 1578 to 1609 in 6135d60
The artifact API is proven to be unreliable #4268 (occasional 503 outages, connectivity issues), also it returns versions that are not released yet as we can see in this PR #4414
The enhancement is to use git tags or any other source for fetching versions instead of the artifact API, this is a more stable source of versions.
Describe a specific use case for the enhancement or feature:
See #4414
What is the definition of done?
The text was updated successfully, but these errors were encountered: