-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: major overhaul to enable multiple builders to be supported in t…
…he all phases * updates to provisioners * scan adjustments * refactored build, scanning and signing to remove Openstack dependencies * removed requirement for a digest being provided as it'll now fetch it from the image metadata. * added support for AMD gpus * Added some new options for OpenStack
- Loading branch information
1 parent
2005e7a
commit 1661d1b
Showing
68 changed files
with
4,021 additions
and
1,871 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
# Changelog | ||
|
||
## [ 2024/02/29 - v1.1.0 ] | ||
|
||
### BREAKING CHANGES | ||
|
||
* changed `cloud` prefix to `infra` in flags and config. | ||
* changed `build.nvidia` prefix to `build.gpu` in flags and config. | ||
* changed `build.nvidia.enable-nvidia-support` prefix to `build.gpu.enable-gpu-support` in flags and config. | ||
|
||
### Changed/Added | ||
|
||
* Added KubeVirt as a build option. | ||
* Supports AMD GPUs | ||
|
||
## [ 2024/02/15 - v1.0.0 ] | ||
|
||
### Changed/Added | ||
|
||
First release with: | ||
|
||
* Functioning support for OpenStack build, scan and signing. | ||
* Baski Server | ||
* Baski Server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### KubeVirt guidelines | ||
|
||
It is expected that you have a kubernetes cluster with KubeVirt installed already. | ||
|
||
If you wish to make use of the [CDI](https://kubevirt.io/user-guide/operations/containerized_data_importer/) support | ||
then it should be installed, and you should also have an S3 endpoint to which you can push the image that is built. | ||
|
||
Baski will push the image to the S3 endpoint then create a **DataVolume** (and required credentials if they don't exist) | ||
that will reference the image at the S3 endpoint as a source. | ||
|
||
If you wish to manually do this yourself then set `kubevirt.store-in-s3` to false. | ||
|
||
Then craft a `baski.yaml` file based on the [example](../baski-example.yaml) supplied and run the commands you require. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.