-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release(v0.3.0-alpha.0): prepare release
This is the official v0.3.0-alpha.0 release. Signed-off-by: Andrey Smirnov <[email protected]>
- Loading branch information
Showing
7 changed files
with
175 additions
and
57 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 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# commit to be tagged for new release | ||
commit = "HEAD" | ||
|
||
project_name = "CAPI Bootstrap Provider Talos" | ||
github_repo = "talos-systems/cluster-api-bootstrap-provider-talos" | ||
match_deps = "^github.com/(talos-systems/[a-zA-Z0-9-]+)$" | ||
|
||
# previous release | ||
previous = "v0.2.0" | ||
|
||
pre_release = true | ||
|
||
preface = """\ | ||
""" | ||
|
||
[notes] | ||
|
||
[notes.talos] | ||
title = "Talos 0.12" | ||
description = """\ | ||
CABPT supports config generation for Talos 0.12. | ||
Talos majort version can be specified in the spec of `TalosControlPlane` or `MachineDeployment`: | ||
```yaml | ||
generateType: controlplane | ||
talosVersion: v0.11 | ||
``` | ||
It is recommended to specify minor version of Talos to make sure machine configuration stays comptabile with Talos version | ||
being used even if the CABPT is upgraded to new version. | ||
""" | ||
|
||
[notes.capi] | ||
title = "CAPI v1alpha3" | ||
description = """\ | ||
This release of CABPT is compatible with CAPI v1alpha3 (v0.3.x). | ||
Next release of CABPT will bring compatibility with CAPI v1alpha4 (v0.4.x). | ||
""" | ||
|
||
[notes.defaultversion] | ||
title = "Default `talosVersion`" | ||
description = """\ | ||
In previous releases of CABPT default value of `talosVersion` field was `v0.8`. | ||
As Talos v0.8 release is almost a year old, new default value of `talosVersion` is to use whatever Talos version CABPT was | ||
built against (in this relase, it's Talos 0.12). | ||
If you're still running Talos v0.8.x, please make sure `talosVersion` is set to `v0.8`. | ||
""" |