Skip to content

Commit bb055e7

Browse files
authoredMay 28, 2025
Merge pull request #667 from furkatgofurov7/prepare-main-v017
🌱 Prepare main branch for v0.17 development
2 parents 8c30949 + afe38db commit bb055e7

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In order to use this provider, you need to have a management cluster available t
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.9.5 --bootstrap rke2:v0.15.0 --control-plane rke2:v0.15.0 --infrastructure docker:v1.9.5
56+
clusterctl init --core cluster-api:v1.9.5 --bootstrap rke2:v0.16.0 --control-plane rke2:v0.16.0 --infrastructure docker:v1.9.5
5757
```
5858
5959
Next, you can proceed to [creating a workload cluster](#create-a-workload-cluster).

‎metadata.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ releaseSeries:
5454
- major: 0
5555
minor: 16
5656
contract: v1beta1
57+
- major: 0
58+
minor: 17
59+
contract: v1beta1

‎test/e2e/config/e2e_conf.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ providers:
8181
- name: rke2-control-plane
8282
type: ControlPlaneProvider
8383
versions:
84-
- name: "v0.15.0"
85-
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.15.0/control-plane-components.yaml"
84+
- name: "v0.16.0"
85+
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.16.0/control-plane-components.yaml"
8686
type: "url"
8787
contract: v1beta1
8888
files:
@@ -93,7 +93,7 @@ providers:
9393
new: "imagePullPolicy: IfNotPresent"
9494
- old: "--leader-elect"
9595
new: "--leader-elect=false"
96-
- name: v0.16.99 # next; use manifest from source files
96+
- name: v0.17.99 # next; use manifest from source files
9797
value: "../../../controlplane/config/default"
9898
contract: v1beta1
9999
files:
@@ -107,8 +107,8 @@ providers:
107107
- name: rke2-bootstrap
108108
type: BootstrapProvider
109109
versions:
110-
- name: "v0.15.0"
111-
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.15.0/bootstrap-components.yaml"
110+
- name: "v0.16.0"
111+
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.16.0/bootstrap-components.yaml"
112112
type: "url"
113113
contract: v1beta1
114114
files:
@@ -119,7 +119,7 @@ providers:
119119
new: "imagePullPolicy: IfNotPresent"
120120
- old: "--leader-elect"
121121
new: "--leader-elect=false"
122-
- name: v0.16.99 # next; use manifest from source files
122+
- name: v0.17.99 # next; use manifest from source files
123123
value: ../../../bootstrap/config/default
124124
contract: v1beta1
125125
files:

‎test/e2e/e2e_suite_test.go

Lines changed: 2 additions & 2 deletions
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.15.0"},
262-
ControlPlaneProviders: []string{"rke2-control-plane:v0.15.0"},
261+
BootstrapProviders: []string{"rke2-bootstrap:v0.16.0"},
262+
ControlPlaneProviders: []string{"rke2-control-plane:v0.16.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

Lines changed: 4 additions & 4 deletions
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.15.0 and perform upgrade to latest version", func() {
89-
By("Installing v0.15.0 boostrap/controlplane provider version")
88+
It("Should create a cluster with v0.16.0 and perform upgrade to latest version", func() {
89+
By("Installing v0.16.0 boostrap/controlplane provider version")
9090
initUpgradableBootstrapCluster(bootstrapClusterProxy, e2eConfig, clusterctlConfigPath, artifactFolder)
9191

9292
By("Initializing the cluster")
@@ -133,8 +133,8 @@ var _ = Describe("Workload cluster creation", func() {
133133
UpgradeManagementCluster(ctx, clusterctl.UpgradeManagementClusterAndWaitInput{
134134
ClusterProxy: bootstrapClusterProxy,
135135
ClusterctlConfigPath: clusterctlConfigPath,
136-
BootstrapProviders: []string{"rke2-bootstrap:v0.16.99"},
137-
ControlPlaneProviders: []string{"rke2-control-plane:v0.16.99"},
136+
BootstrapProviders: []string{"rke2-bootstrap:v0.17.99"},
137+
ControlPlaneProviders: []string{"rke2-control-plane:v0.17.99"},
138138
LogFolder: clusterctlLogFolder,
139139
})
140140

0 commit comments

Comments
 (0)