2022-07-05 16:07:15 +02:00
<!--
Styleguide for this document:
- Sentences should end with a period.
- This is the keepachangelog style, whereas the Microsoft Style Guide we use for other docs omits periods for short list items.
- Omit the verb if possible.
- "Early boot logging ..." instead of "Add early boot logging ...".
- If you need a verb, it should usually be imperative mood (Add instead of Added).
- Items should start with a capital letter.
-->
2022-05-27 16:53:16 +02:00
# Changelog
All notable changes to Constellation will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## [Unreleased]
### Added
2022-06-02 10:57:48 +02:00
2022-07-26 17:08:57 +02:00
- Kubernetes version is configured through an entry in `constellation-config.yaml` .
- Kubernetes version 1.24 is now supported.
2022-07-27 13:38:14 +02:00
- Kubernetes version 1.22 is now supported.
2022-07-26 16:19:53 +02:00
- Log the disk UUID to cloud logging for recovery.
2022-07-26 17:08:57 +02:00
2022-06-02 10:57:48 +02:00
### Changed
2022-07-05 16:07:15 +02:00
2022-07-05 14:14:11 +02:00
- Nodes add themselves to the cluster after `constellation init` is done
2022-07-26 10:58:39 +02:00
- Owner ID and Unique ID merged into a single value: Cluster ID
2022-07-05 16:07:15 +02:00
### Deprecated
2022-06-02 10:57:48 +02:00
### Removed
2022-07-05 14:14:11 +02:00
- User facing WireGuard VPN
2022-06-02 10:57:48 +02:00
### Fixed
2022-07-18 14:00:57 +02:00
- Correctly wait for `bootstrapper` to come online in `constellation init`
2022-06-02 10:57:48 +02:00
### Security
2022-07-05 16:07:15 +02:00
- Create Kubernetes CA signed kubelet certificates on activation.
2022-06-02 10:57:48 +02:00
### Internal
2022-07-11 15:19:56 +02:00
## [1.3.1] - 2022-07-11
### Changed
- Update default CoreOS image to latest version (1657199013).
### Fixed
- Add load balancer path to Azure deployment so that PCR values can be read.
- Show correct version number in `constellation version` .
### Removed
- Support for Azure `Standard_*_v3` types.
2022-07-05 16:07:15 +02:00
## [1.3.0] - 2022-07-05
2022-06-02 11:07:05 +02:00
### Added
2022-07-05 16:07:15 +02:00
- Early boot logging for GCP and Azure. [[Docs]](https://constellation-docs.edgeless.systems/6c320851-bdd2-41d5-bf10-e27427398692/#/workflows/troubleshooting ?id=cloud-logging)
- `constellation-access-manager` allows users to manage SSH users over a ConfigMap. Enables persistent and dynamic management of SSH users on multiple nodes, even after a reboot. [[Docs]](https://constellation-docs.edgeless.systems/6c320851-bdd2-41d5-bf10-e27427398692/#/workflows/ssh )
- GCP-native Kubernetes load balancing. [[Docs]](https://constellation-docs.edgeless.systems/6c320851-bdd2-41d5-bf10-e27427398692/#/architecture/networking )
- `constellation version` prints more information to aid in troubleshooting. [[Docs]](https://constellation-docs.edgeless.systems/6c320851-bdd2-41d5-bf10-e27427398692/#/reference/cli ?id=constellation-version)
- Standard logging for all services and CLI, allows users to control output in a consistent manner.
- `constellation-id.json` in Constellation workspace now holds cluster IDs, to reduce required arguments in Constellation commands, e.g., `constellation verify` .
2022-06-02 11:07:05 +02:00
### Changed
2022-07-05 16:07:15 +02:00
- New `constellation-activation-service` offloads Kubernetes node activation from monolithic Coordinator to Kubernetes native micro-service. [[ReadMe]](https://github.com/edgelesssys/constellation/blob/main/activation/README.md)
- Improve user-friendliness of error messages in Constellation CLI.
- Move verification from extracting attestation statements out of aTLS handshake to a dedicated `verify-service` in Kubernetes with gRPC and HTTP endpoints.
2022-06-02 11:07:05 +02:00
### Security
2022-07-05 16:07:15 +02:00
- GCP WireGuard encryption via cilium.
2022-06-02 11:07:05 +02:00
### Internal
2022-07-05 16:07:15 +02:00
- Refactore folder structure of repository to better reflect `internal` implementation and public API.
- Extend `goleak` checks to all tests.
## [1.2.0] - 2022-06-02
### Changed
- Replace flannel CNI with Cilium.
2022-06-02 11:07:05 +02:00
2022-06-02 10:57:48 +02:00
## [1.1.0] - 2022-06-02
### Added
2022-05-27 16:53:16 +02:00
- CLI
- Command `constellation recover` to re-initialize a completely stopped cluster.
- Command `constellation config generate` to generate a default configuration file for a specific cloud provider.
- CSI
- Option to enable dm-integrity in a StorageClass.
- Support volume expansion.
- Support volume snapshots.
2022-06-02 10:57:48 +02:00
- KMS
- Deploy Key Management Service (KMS) in Constellation clusters to handle key derivation.
2022-05-27 16:53:16 +02:00
- Option to add SSH users on init.
### Changed
- CLI UX
- `constellation create` now requires a configuration file. The usual workflow is to run `constellation config generate` first.
- Consistent command format with at most one argument and named flags otherwise.
- Display usage when invalid arguments are passed.
- Add list of instance types to command help.
- Wording tweaks.
- CLI config
- Rename dev-config to config.
- Change format to YAML.
- Make it self-documenting.
- Validation.
- Rename *PCRs* to *Measurements* .
### Removed
- Support for non-CVMs on GCP.
### Fixed
- Pin Kubernetes version deployed by `kubeadm init` .
### Security
- Replace single, never expiring Kubernetes join token with expiring unique tokens.
- Apply CIS benchmark for kubeadm clusterconf and kubelet conf.
- Enable Kubernetes audit log.
### Internal
- Create GCP images in `constellation-images` project so that they can be shared with customers.
- Add customer onboarding docs.
- Add E2E test as Github Action.
- Improvements to local QEMU testing.
- Preparations for mutual ATLS.
## [1.0.0] - 2022-04-28
Initial release of Constellation. With underlying WireGuard and Kubernetes compliant.
2022-07-11 15:19:56 +02:00
[Unreleased]: https://github.com/edgelesssys/constellation/compare/v1.3.1...HEAD
[1.3.1]: https://github.com/edgelesssys/constellation/compare/v1.3.0...v1.3.1
2022-07-05 16:07:15 +02:00
[1.3.0]: https://github.com/edgelesssys/constellation/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/edgelesssys/constellation/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/edgelesssys/constellation/compare/v1.0.0...v1.1.0
2022-05-27 16:53:16 +02:00
[1.0.0]: https://github.com/edgelesssys/constellation/releases/tag/v1.0.0