Skip to content

Commit 704e11e

Browse files
authored
Merge pull request #143 from elmiko/release-0.10.0
Release 0.10.0
2 parents 171dc2b + 9fea70b commit 704e11e

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ pretend to run pods scheduled to them. For more information on Kubemark, the
3636

3737
| Dependency | Version |
3838
|:------------|:-------:|
39-
| kubernetes | v1.31 |
40-
| cluster-api | v1.9 |
39+
| kubernetes | v1.32 |
40+
| cluster-api | v1.10 |
4141

4242
## Getting started
4343

@@ -73,7 +73,7 @@ flavor to get a hybrid CAPD/CAPK cluster:
7373
```bash
7474
export SERVICE_CIDR=["172.17.0.0/16"]
7575
export POD_CIDR=["192.168.122.0/24"]
76-
clusterctl generate cluster wow --infrastructure kubemark --flavor capd --kubernetes-version 1.28.0 --control-plane-machine-count=1 --worker-machine-count=4 | kubectl apply -f-
76+
clusterctl generate cluster wow --infrastructure kubemark --flavor capd --kubernetes-version 1.32.8 --control-plane-machine-count=1 --worker-machine-count=4 | kubectl apply -f-
7777
```
7878

7979
*Note: these CIDR values are specific to Ubuntu Server 22.04*
@@ -87,8 +87,8 @@ for more information.
8787
For other providers, you can either create a custom hybrid cluster template, or deploy the control plane and worker machines separately, specifiying the same cluster name:
8888

8989
```bash
90-
clusterctl generate cluster wow --infrastructure aws --kubernetes-version 1.28.0 --control-plane-machine-count=1 | kubectl apply -f-
91-
clusterctl generate cluster wow --infrastructure kubemark --kubernetes-version 1.28.0 --worker-machine-count=4 | kubectl apply -f-
90+
clusterctl generate cluster wow --infrastructure aws --kubernetes-version 1.32.2 --control-plane-machine-count=1 | kubectl apply -f-
91+
clusterctl generate cluster wow --infrastructure kubemark --kubernetes-version 1.32.2 --worker-machine-count=4 | kubectl apply -f-
9292
```
9393

9494
## Using tilt
@@ -140,7 +140,7 @@ To run this pipeline docker, kind, python must be installed.
140140
You can run the E2E test with the following steps:
141141
142142
```bash
143-
export KIND_CLUSTER_IMAGE=docker.io/kindest/node:v1.31.0
143+
export KIND_CLUSTER_IMAGE=docker.io/kindest/node:v1.32.8
144144
export CAPI_PATH=<path to cluster-api repository>
145145
export ROOT_DIR=<path to cluster-api-provider-kubemark repository>
146146
cd $(ROOT_DIR)

clusterctl-settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "infrastructure-kubemark",
33
"config": {
44
"componentsFile": "infrastructure-components.yaml",
5-
"nextVersion": "v0.9.99",
5+
"nextVersion": "v0.10.99",
66
"configFolder": "config"
77
}
88
}

hack/tests/utils/kind-with-registry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ KIND_CLUSTER_OPTS="--name ${KIND_CLUSTER_NAME}"
2424
if [ -n "${KIND_CLUSTER_IMAGE}" ]; then
2525
KIND_CLUSTER_OPTS="${KIND_CLUSTER_OPTS} --image ${KIND_CLUSTER_IMAGE}"
2626
else
27-
KIND_CLUSTER_OPTS="${KIND_CLUSTER_OPTS} --image docker.io/kindest/node:v1.31.2"
27+
KIND_CLUSTER_OPTS="${KIND_CLUSTER_OPTS} --image docker.io/kindest/node:v1.32.8"
2828
fi
2929
kind_version=$(kind version)
3030
kind_network='kind'

metadata.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ releaseSeries:
3030
- major: 0
3131
minor: 9
3232
contract: v1beta1
33+
- major: 0
34+
minor: 10
35+
contract: v1beta1

0 commit comments

Comments
 (0)