diff --git a/internal/controllers/clusterctl/config.yaml b/internal/controllers/clusterctl/config.yaml index 3e6956be..9cae6e7d 100644 --- a/internal/controllers/clusterctl/config.yaml +++ b/internal/controllers/clusterctl/config.yaml @@ -11,12 +11,12 @@ data: providers: # Cluster API core provider - name: "cluster-api" - url: "https://github.com/rancher-sandbox/cluster-api/releases/v1.8.4/core-components.yaml" + url: "https://github.com/rancher-sandbox/cluster-api/releases/v1.9.0/core-components.yaml" type: "CoreProvider" # Infrastructure providers - name: "aws" - url: "https://github.com/rancher-sandbox/cluster-api-provider-aws/releases/v2.6.1/infrastructure-components.yaml" + url: "https://github.com/rancher-sandbox/cluster-api-provider-aws/releases/v2.7.1/infrastructure-components.yaml" type: "InfrastructureProvider" - name: "azure" url: "https://github.com/rancher-sandbox/cluster-api-provider-azure/releases/v1.17.0/infrastructure-components.yaml" @@ -25,15 +25,15 @@ data: url: "https://github.com/rancher-sandbox/cluster-api-provider-gcp/releases/v1.8.0/infrastructure-components.yaml" type: "InfrastructureProvider" - name: "vsphere" - url: "https://github.com/rancher-sandbox/cluster-api-provider-vsphere/releases/v1.11.2/infrastructure-components.yaml" + url: "https://github.com/rancher-sandbox/cluster-api-provider-vsphere/releases/v1.11.3/infrastructure-components.yaml" type: "InfrastructureProvider" - name: "docker" - url: "https://github.com/kubernetes-sigs/cluster-api/releases/v1.8.4/infrastructure-components-development.yaml" + url: "https://github.com/kubernetes-sigs/cluster-api/releases/v1.9.0/infrastructure-components-development.yaml" type: "InfrastructureProvider" # Bootstrap providers - name: "kubeadm" - url: "https://github.com/rancher-sandbox/cluster-api/releases/v1.8.4/bootstrap-components.yaml" + url: "https://github.com/rancher-sandbox/cluster-api/releases/v1.9.0/bootstrap-components.yaml" type: "BootstrapProvider" - name: "rke2" url: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.9.0/bootstrap-components.yaml" @@ -41,7 +41,7 @@ data: # ControlPlane providers - name: "kubeadm" - url: "https://github.com/rancher-sandbox/cluster-api/releases/v1.8.4/control-plane-components.yaml" + url: "https://github.com/rancher-sandbox/cluster-api/releases/v1.9.0/control-plane-components.yaml" type: "ControlPlaneProvider" - name: "rke2" url: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.9.0/control-plane-components.yaml" diff --git a/internal/sync/provider_sync_test.go b/internal/sync/provider_sync_test.go index 20b42488..72d87e2d 100644 --- a/internal/sync/provider_sync_test.go +++ b/internal/sync/provider_sync_test.go @@ -37,7 +37,7 @@ import ( ) const ( - CAPIVersion = "v1.8.4" + CAPIVersion = "v1.9.0" ) var _ = Describe("Provider sync", func() { diff --git a/test/e2e/const.go b/test/e2e/const.go index fbbc2d02..3b8bb110 100644 --- a/test/e2e/const.go +++ b/test/e2e/const.go @@ -186,5 +186,5 @@ const ( ) const ( - CAPIVersion = "v1.8.4" + CAPIVersion = "v1.9.0" )