Unikorn is a relatively large collection of independent microservices that combine to provide IaaS/PaaS functionality. Maintaining a matrix of compatible versions is complex due to a lot of inter-dependencies. This repository aims to simplify the task by bundling together versions that are know to work together and notify of any breaking changes before the project becomes GA.
5 November 2024
Component | Version |
---|---|
Core | v0.1.79 |
Identity | v0.2.44 🆕 |
Region | v0.1.45 🆕 |
Kubernetes | v0.2.46 🆕 |
UI | v0.2.39 🆕 |
- Improves RBAC so users who use one service no longer need direct access to requisite services.
- Remove flavor/image filtering from the region service, these need to be proxied through the top level service e.g. kubernetes, as those contain the domain specific knowledge to filter correctly.
- 3rd party UX components will be affected by a number of API changes:
- Any ACL reliant code needs to be aware endpoints have changed e.g.
projects
becomesidentity:projects
.- In general the form is
<service>:<resource>
meaning we can do things likeregion:*
in the future as a terse way of granting access to everything. - A full list of officially supported endpoints is available here.
- In general the form is
- Users can no longer access flavors and images directly through the region service.
- This is a fairly trivial thing to fix as the APIs remain the same, they now belong to the service that consumes those resources.
- This allows the Kubernetes service for example to filter out flavors that
kubeadm
cannot use, independently of the compute service.
- Any ACL reliant code needs to be aware endpoints have changed e.g.
1 November 2024
Component | Version |
---|---|
Core | v0.1.79 |
Identity | v0.2.42 |
Region | v0.1.44 |
Kubernetes | v0.2.45 |
UI | v0.2.38 |
- Initial baseline.