Skip to content

Commit 66f2739

Browse files
Prepare main branch for v0.9 development
Signed-off-by: Alexandr Demicev <[email protected]>
1 parent 75b3d07 commit 66f2739

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

docs/book/src/01_user/01_getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.
5353
No additional steps are required and you can install the RKE2 provider with **clusterctl** directly:
5454

5555
```bash
56-
clusterctl init --core cluster-api:v1.8.5 --bootstrap rke2:v0.8.0 --control-plane rke2:v0.8.0 --infrastructure docker:v1.8.5
56+
clusterctl init --core cluster-api:v1.8.5 --bootstrap rke2:v0.9.0 --control-plane rke2:v0.9.0 --infrastructure docker:v1.8.5
5757
```
5858

5959
Next, you can proceed to [creating a workload cluster](#create-a-workload-cluster).

metadata.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ releaseSeries:
3333
- major: 0
3434
minor: 9
3535
contract: v1beta1
36+
- major: 0
37+
minor: 10
38+
contract: v1beta1

test/e2e/config/e2e_conf.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ providers:
6464
- name: rke2-control-plane
6565
type: ControlPlaneProvider
6666
versions:
67-
- name: "v0.8.0"
68-
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.8.0/control-plane-components.yaml"
67+
- name: "v0.9.0"
68+
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.9.0/control-plane-components.yaml"
6969
type: "url"
7070
contract: v1beta1
7171
files:
@@ -76,7 +76,7 @@ providers:
7676
new: "imagePullPolicy: IfNotPresent"
7777
- old: "--leader-elect"
7878
new: "--leader-elect=false"
79-
- name: v0.9.99 # next; use manifest from source files
79+
- name: v0.10.99 # next; use manifest from source files
8080
value: "../../../controlplane/config/default"
8181
contract: v1beta1
8282
files:
@@ -90,8 +90,8 @@ providers:
9090
- name: rke2-bootstrap
9191
type: BootstrapProvider
9292
versions:
93-
- name: "v0.8.0"
94-
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.8.0/bootstrap-components.yaml"
93+
- name: "v0.9.0"
94+
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.9.0/bootstrap-components.yaml"
9595
type: "url"
9696
contract: v1beta1
9797
files:
@@ -102,7 +102,7 @@ providers:
102102
new: "imagePullPolicy: IfNotPresent"
103103
- old: "--leader-elect"
104104
new: "--leader-elect=false"
105-
- name: v0.9.99 # next; use manifest from source files
105+
- name: v0.10.99 # next; use manifest from source files
106106
value: ../../../bootstrap/config/default
107107
contract: v1beta1
108108
files:

test/e2e/e2e_suite_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ func initUpgradableBootstrapCluster(bootstrapClusterProxy framework.ClusterProxy
258258
InfrastructureProviders: config.InfrastructureProviders(),
259259
IPAMProviders: config.IPAMProviders(),
260260
RuntimeExtensionProviders: config.RuntimeExtensionProviders(),
261-
BootstrapProviders: []string{"rke2-bootstrap:v0.8.0"},
262-
ControlPlaneProviders: []string{"rke2-control-plane:v0.8.0"},
261+
BootstrapProviders: []string{"rke2-bootstrap:v0.9.0"},
262+
ControlPlaneProviders: []string{"rke2-control-plane:v0.9.0"},
263263
LogFolder: filepath.Join(artifactFolder, "clusters", bootstrapClusterProxy.GetName()),
264264
DisableMetricsCollection: true,
265265
}, config.GetIntervals(bootstrapClusterProxy.GetName(), "wait-controllers")...)

test/e2e/e2e_upgrade_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ var _ = Describe("Workload cluster creation", func() {
8585
})
8686

8787
Context("Creating a single control-plane cluster", func() {
88-
It("Should create a cluster with v0.8.0 and perform upgrade to latest version", func() {
89-
By("Installing v0.8.0 boostrap/controlplane provider version")
88+
It("Should create a cluster with v0.9.0 and perform upgrade to latest version", func() {
89+
By("Installing v0.9.0 boostrap/controlplane provider version")
9090
initUpgradableBootstrapCluster(bootstrapClusterProxy, e2eConfig, clusterctlConfigPath, artifactFolder)
9191

9292
By("Initializing the cluster")
@@ -118,8 +118,8 @@ var _ = Describe("Workload cluster creation", func() {
118118
UpgradeManagementCluster(ctx, clusterctl.UpgradeManagementClusterAndWaitInput{
119119
ClusterProxy: bootstrapClusterProxy,
120120
ClusterctlConfigPath: clusterctlConfigPath,
121-
BootstrapProviders: []string{"rke2-bootstrap:v0.9.99"},
122-
ControlPlaneProviders: []string{"rke2-control-plane:v0.9.99"},
121+
BootstrapProviders: []string{"rke2-bootstrap:v0.10.99"},
122+
ControlPlaneProviders: []string{"rke2-control-plane:v0.10.99"},
123123
LogFolder: clusterctlLogFolder,
124124
})
125125

0 commit comments

Comments
 (0)