chore: prepare main branch for v0.13 development
Signed-off-by: Furkat Gofurov <furkat.gofurov@suse.com>
This commit is contained in:
parent
ab5bb4ccae
commit
256e3fd00d
|
|
@ -53,7 +53,7 @@ In order to use this provider, you need to have a management cluster available t
|
|||
No additional steps are required and you can install the RKE2 provider with **clusterctl** directly:
|
||||
|
||||
```bash
|
||||
clusterctl init --core cluster-api:v1.9.5--bootstrap rke2:v0.11.0 --control-plane rke2:v0.11.0 --infrastructure docker:v1.9.5
|
||||
clusterctl init --core cluster-api:v1.9.5--bootstrap rke2:v0.12.0 --control-plane rke2:v0.12.0 --infrastructure docker:v1.9.5
|
||||
```
|
||||
|
||||
Next, you can proceed to [creating a workload cluster](#create-a-workload-cluster).
|
||||
|
|
|
|||
|
|
@ -42,3 +42,6 @@ releaseSeries:
|
|||
- major: 0
|
||||
minor: 12
|
||||
contract: v1beta1
|
||||
- major: 0
|
||||
minor: 13
|
||||
contract: v1beta1
|
||||
|
|
|
|||
|
|
@ -64,8 +64,8 @@ providers:
|
|||
- name: rke2-control-plane
|
||||
type: ControlPlaneProvider
|
||||
versions:
|
||||
- name: "v0.11.0"
|
||||
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.11.0/control-plane-components.yaml"
|
||||
- name: "v0.12.0"
|
||||
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.12.0/control-plane-components.yaml"
|
||||
type: "url"
|
||||
contract: v1beta1
|
||||
files:
|
||||
|
|
@ -76,7 +76,7 @@ providers:
|
|||
new: "imagePullPolicy: IfNotPresent"
|
||||
- old: "--leader-elect"
|
||||
new: "--leader-elect=false"
|
||||
- name: v0.12.99 # next; use manifest from source files
|
||||
- name: v0.13.99 # next; use manifest from source files
|
||||
value: "../../../controlplane/config/default"
|
||||
contract: v1beta1
|
||||
files:
|
||||
|
|
@ -90,8 +90,8 @@ providers:
|
|||
- name: rke2-bootstrap
|
||||
type: BootstrapProvider
|
||||
versions:
|
||||
- name: "v0.11.0"
|
||||
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.11.0/bootstrap-components.yaml"
|
||||
- name: "v0.12.0"
|
||||
value: "https://github.com/rancher/cluster-api-provider-rke2/releases/download/v0.12.0/bootstrap-components.yaml"
|
||||
type: "url"
|
||||
contract: v1beta1
|
||||
files:
|
||||
|
|
@ -102,7 +102,7 @@ providers:
|
|||
new: "imagePullPolicy: IfNotPresent"
|
||||
- old: "--leader-elect"
|
||||
new: "--leader-elect=false"
|
||||
- name: v0.12.99 # next; use manifest from source files
|
||||
- name: v0.13.99 # next; use manifest from source files
|
||||
value: ../../../bootstrap/config/default
|
||||
contract: v1beta1
|
||||
files:
|
||||
|
|
|
|||
|
|
@ -258,8 +258,8 @@ func initUpgradableBootstrapCluster(bootstrapClusterProxy framework.ClusterProxy
|
|||
InfrastructureProviders: config.InfrastructureProviders(),
|
||||
IPAMProviders: config.IPAMProviders(),
|
||||
RuntimeExtensionProviders: config.RuntimeExtensionProviders(),
|
||||
BootstrapProviders: []string{"rke2-bootstrap:v0.11.0"},
|
||||
ControlPlaneProviders: []string{"rke2-control-plane:v0.11.0"},
|
||||
BootstrapProviders: []string{"rke2-bootstrap:v0.12.0"},
|
||||
ControlPlaneProviders: []string{"rke2-control-plane:v0.12.0"},
|
||||
LogFolder: filepath.Join(artifactFolder, "clusters", bootstrapClusterProxy.GetName()),
|
||||
DisableMetricsCollection: true,
|
||||
}, config.GetIntervals(bootstrapClusterProxy.GetName(), "wait-controllers")...)
|
||||
|
|
|
|||
|
|
@ -85,8 +85,8 @@ var _ = Describe("Workload cluster creation", func() {
|
|||
})
|
||||
|
||||
Context("Creating a single control-plane cluster", func() {
|
||||
It("Should create a cluster with v0.11.0 and perform upgrade to latest version", func() {
|
||||
By("Installing v0.11.0 boostrap/controlplane provider version")
|
||||
It("Should create a cluster with v0.12.0 and perform upgrade to latest version", func() {
|
||||
By("Installing v0.12.0 boostrap/controlplane provider version")
|
||||
initUpgradableBootstrapCluster(bootstrapClusterProxy, e2eConfig, clusterctlConfigPath, artifactFolder)
|
||||
|
||||
By("Initializing the cluster")
|
||||
|
|
@ -118,8 +118,8 @@ var _ = Describe("Workload cluster creation", func() {
|
|||
UpgradeManagementCluster(ctx, clusterctl.UpgradeManagementClusterAndWaitInput{
|
||||
ClusterProxy: bootstrapClusterProxy,
|
||||
ClusterctlConfigPath: clusterctlConfigPath,
|
||||
BootstrapProviders: []string{"rke2-bootstrap:v0.12.99"},
|
||||
ControlPlaneProviders: []string{"rke2-control-plane:v0.12.99"},
|
||||
BootstrapProviders: []string{"rke2-bootstrap:v0.13.99"},
|
||||
ControlPlaneProviders: []string{"rke2-control-plane:v0.13.99"},
|
||||
LogFolder: clusterctlLogFolder,
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue