Background
HashiCorp has announced that HCP Vagrant (Vagrant Cloud) is being deprecated:
- 2026-10-01 — new boxes can no longer be created in HCP Vagrant
- 2026-12-31 — end of operations; all deployments will be decommissioned
Source: https://developer.hashicorp.com/vagrant/vagrant-cloud/boxes/catalog
Without an alternative, the bento org on Vagrant Cloud becomes read-only on 2026-10-01, and every box it publishes disappears on 2026-12-31. I would like to propose moving bento's hosting to GitLab, using only public static resources:
- Box binary files → GitLab Generic Package Registry (gitlab.com, free for public projects)
- Box metadata catalog (the JSON document consumed by
vagrant box add https://.../metadata.json) → GitLab Pages
Why GitHub alone is not sufficient
| Constraint |
GitHub |
| Release asset max file size |
2 GiB |
| Release total size / bandwidth |
unlimited |
| Pages site size |
1 GB |
| Pages bandwidth |
100 GB / month (soft limit) |
Ref: https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases#storage-and-bandwidth-quotas
Why GitLab works
From https://docs.gitlab.com/user/gitlab_com/ (the GitLab for SaaS docs):
- Generic package registry — maximum file size 5 GB per package, which covers every current and foreseeable bento box.
- Generic packages support unauthenticated download at
GET /projects/:id/packages/generic/:package_name/:package_version/:file_name — exactly the shape the url field of a Vagrant metadata catalog needs, i.e., no auth required for end users.
- GitLab Pages — site size limit 1 GB, which is more than enough for a metadata catalog for hundreds of box/provider/arch combinations.
- No documented total storage or bandwidth quota for generic packages or Pages on gitlab.com; both are served via GitLab's CDN.
So both the box binaries and the metadata catalog can live on GitLab in a single free public project.
Background
HashiCorp has announced that HCP Vagrant (Vagrant Cloud) is being deprecated:
Source: https://developer.hashicorp.com/vagrant/vagrant-cloud/boxes/catalog
Without an alternative, the
bentoorg on Vagrant Cloud becomes read-only on 2026-10-01, and every box it publishes disappears on 2026-12-31. I would like to propose moving bento's hosting to GitLab, using only public static resources:vagrant box add https://.../metadata.json) → GitLab PagesWhy GitHub alone is not sufficient
Ref: https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases#storage-and-bandwidth-quotas
Why GitLab works
From https://docs.gitlab.com/user/gitlab_com/ (the GitLab for SaaS docs):
GET /projects/:id/packages/generic/:package_name/:package_version/:file_name— exactly the shape theurlfield of a Vagrant metadata catalog needs, i.e., no auth required for end users.So both the box binaries and the metadata catalog can live on GitLab in a single free public project.