Skip to content

Commit 5dc7d2b

Browse files
authored
chore: v0.12.0 release (#143)
* docs: kamaji edge versioning Signed-off-by: Dario Tranchitella <[email protected]> * chore: releasing v0.12.0 Signed-off-by: Dario Tranchitella <[email protected]> * chore(capi): support to v0.12.0 Signed-off-by: Dario Tranchitella <[email protected]> --------- Signed-off-by: Dario Tranchitella <[email protected]>
1 parent dc1962a commit 5dc7d2b

File tree

5 files changed

+16
-30
lines changed

5 files changed

+16
-30
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= v0.11.0
6+
VERSION ?= v0.12.0
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

README.md

+10-27
Original file line numberDiff line numberDiff line change
@@ -60,33 +60,6 @@ Before the next steps, make sure the initial setup for development environment s
6060
Versioning adheres to the [Semantic Versioning](http://semver.org/) principles.
6161
A full list of the available release is available in the GitHub repository's [**Release** section](https://github.com/clastix/cluster-api-control-plane-provider-kamaji/releases).
6262

63-
### 📄 Compatibility matrix
64-
65-
The Control Plane provider has several dependencies, such as Cluster API and Kamaji.
66-
67-
The following compatibility matrix is useful to match them according to the Control Plane provider version you're planning to run.
68-
69-
| CP provider | Cluster API | Kamaji | TCP API version |
70-
|-------------|------------------------|---------|-----------------|
71-
| v0.10.x | v1.5.x, v1.6.x, v1.7.x | ~v1.0.x | `v1alpha1` |
72-
| v0.10.x | v1.5.x, v1.6.x, v1.7.x | ~v1.0.x | `v1alpha1` |
73-
| v0.9.0 | v1.5.x, v1.6.x | ~v0.6.x | `v1alpha1` |
74-
| v0.8.0 | v1.5.x, v1.6.x | ~v0.5.x | `v1alpha1` |
75-
| v0.7.x | v1.5.x, v1.6.x | ~v0.4.0 | `v1alpha1` |
76-
| v0.6.0 | v1.5.x, v1.6.x | ~v0.4.0 | `v1alpha1` |
77-
| v0.5.0 | v1.5.x | ~v0.4.0 | `v1alpha1` |
78-
| v0.4.2 | v1.5.x | ~v0.3.2 | `v1alpha1` |
79-
| v0.4.1 | v1.5.x | ~v0.3.2 | `v1alpha1` |
80-
| v0.4.0 | v1.5.x | ~v0.3.2 | `v1alpha1` |
81-
| v0.3.1 | v1.5.x | ~v0.3.2 | `v1alpha1` |
82-
| v0.3.0 | v1.5.x | ~v0.3.2 | `v1alpha1` |
83-
| v0.2.2 | v1.5.x | ~v0.3.2 | `v1alpha1` |
84-
| v0.2.1 | v1.5.x | v0.3.1 | `v1alpha1` |
85-
| v0.2.0 | v1.4.x | v0.3.x | `v1alpha1` |
86-
| v0.2.0 | v1.4.x | v0.3.x | `v1alpha1` |
87-
| v0.1.1 | v1.4.x | v0.3.x | `v1alpha1` |
88-
| v0.1.0 | v1.4.x | v0.3.x | `v1alpha1` |
89-
9063
### 🤝 Contributions
9164

9265
Contributions are highly appreciated and very welcomed!
@@ -103,6 +76,16 @@ Commits are used to generate the changelog, and their author will be referenced
10376
The Kamaji Cluster API Control Plane provider is licensed under Apache 2.0.
10477
The code is provided as-is with no warranties.
10578

79+
### 📄 Kamaji compatibility
80+
81+
As of July 2024, CLASTIX Labs organisation does no longer provide stable release artefacts in favour of [edge releases](https://kamaji.clastix.io/reference/versioning/#edge-releases).
82+
83+
Although CLASTIX Labs strives to provide production-grade artefacts even for edge releases,
84+
starting from v0.12.0 the Kamaji Cluster API Control Plane provider will not use a stable version pinning in favour of edge releases.
85+
86+
To ensure a perfect compatibility and a production grade implementation between Kamaji and the Cluster API Control Plane provider,
87+
we suggest getting in touch with CLASTIX Labs to achieve commercial support.
88+
10689
### 🛟 Commercial Support
10790

10891
[CLASTIX](https://clastix.io/) is the commercial company behind Kamaji and the Cluster API Control Plane provider.

config/control-plane-components.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13480,7 +13480,7 @@ spec:
1348013480
- --feature-gates=ExternalClusterReference=${CACPPK_EXTERNAL_CLUSTER_REFERENCE:=false},ExternalClusterReferenceCrossNamespace=${CACPPK_EXTERNAL_CLUSTER_REFERENCE_CROSS_NAMESPACE:=false}
1348113481
command:
1348213482
- /manager
13483-
image: docker.io/clastix/cluster-api-control-plane-provider-kamaji:v0.11.0
13483+
image: docker.io/clastix/cluster-api-control-plane-provider-kamaji:v0.12.0
1348413484
livenessProbe:
1348513485
httpGet:
1348613486
path: /healthz

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: docker.io/clastix/cluster-api-control-plane-provider-kamaji
8-
newTag: v0.11.0
8+
newTag: v0.12.0

config/metadata.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
# update this file only when a new major or minor version is released
66
apiVersion: clusterctl.cluster.x-k8s.io/v1alpha3
77
releaseSeries:
8+
- major: 0
9+
minor: 12
10+
contract: v1beta1
811
- major: 0
912
minor: 11
1013
contract: v1beta1

0 commit comments

Comments
 (0)