Hi, I am curious that Checkpoint knows about Nomad v1, as https://checkpoint-api.hashicorp.com/v1/check/nomad returns below output:
{
"product": "nomad",
"current_version": "0.12.9",
"current_release": 1605897855,
"current_download_url": "https://releases.hashicorp.com/nomad/0.12.9/",
"current_changelog_url": "https://github.com/hashicorp/nomad/blob/v0.12.9/CHANGELOG.md",
"project_website": "https://nomadproject.io",
"alerts": []
}
Is that correct? if not, where is the appropriate place to report?
Regards.
tgross
December 10, 2020, 2:38pm
2
Thanks for pointing that our @lens0021 … looks like we missed that step during the release process (checkpoint is one of our older components that isn’t wired in automatically ). I’ve fixed that:
$ curl -s https://checkpoint-api.hashicorp.com/v1/check/nomad | jq .
{
"product": "nomad",
"current_version": "1.0",
"current_release": 1607611024,
"current_download_url": "https://releases.hashicorp.com/nomad/1.0.0/",
"current_changelog_url": "https://github.com/hashicorp/nomad/blob/master/CHANGELOG.md#100-december-8-2020",
"project_website": "https://nomadproject.io",
"alerts": []
}
2 Likes