Skip to content

Commit

Permalink
chore: bump caprke2 to v0.11.0
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Salas <[email protected]>
  • Loading branch information
salasberryfin committed Jan 28, 2025
1 parent fdcb2d7 commit 9a5fae4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion exp/etcdrestore/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replace github.com/rancher/turtles => ../..
require (
github.com/onsi/ginkgo/v2 v2.22.2
github.com/onsi/gomega v1.36.2
github.com/rancher/cluster-api-provider-rke2 v0.10.0
github.com/rancher/cluster-api-provider-rke2 v0.11.0
github.com/rancher/turtles v0.0.0-00010101000000-000000000000
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace
k8s.io/api v0.31.4
Expand Down
4 changes: 2 additions & 2 deletions exp/etcdrestore/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ github.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G
github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8=
github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc=
github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=
github.com/rancher/cluster-api-provider-rke2 v0.10.0 h1:fDX4n84vaE/5n1Op3/KJAuIqIAPIPPGorUzUlQ8Ck5c=
github.com/rancher/cluster-api-provider-rke2 v0.10.0/go.mod h1:yx6bUVZmpICOZHyHsrJJ8f+NzXKzi87l86bafdQdl4I=
github.com/rancher/cluster-api-provider-rke2 v0.11.0 h1:nVIdF2B+YjGeBt/jJZvwC4D0iFR1N5RT2/t98JcRFt0=
github.com/rancher/cluster-api-provider-rke2 v0.11.0/go.mod h1:/a71KlFmsYRM2QR/2EqDww3VFVyHTL6ZFfd2QHDd0Uo=
github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k=
Expand Down
8 changes: 4 additions & 4 deletions internal/controllers/clusterctl/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ data:
url: https://github.com/rancher-sandbox/cluster-api-provider-gcp/releases/v1.8.1/infrastructure-components.yaml
- name: rke2
type: ControlPlaneProvider
url: https://github.com/rancher/cluster-api-provider-rke2/releases/v0.10.0/control-plane-components.yaml
url: https://github.com/rancher/cluster-api-provider-rke2/releases/v0.11.0/control-plane-components.yaml
images:
image1:
repository: repo1
Expand Down Expand Up @@ -94,7 +94,7 @@ data:
{
Name: "rke2",
Type: "BootstrapProvider",
URL: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.10.0/bootstrap-components.yaml",
URL: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.11.0/bootstrap-components.yaml",
},
{
Name: "fleet",
Expand Down Expand Up @@ -139,14 +139,14 @@ data:
Expect(configRepo.Providers).To(ContainElement(v1alpha1.Provider{
Name: "rke2",
Type: "ControlPlaneProvider",
URL: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.10.0/control-plane-components.yaml",
URL: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.11.0/control-plane-components.yaml",
}))

// Ensure a new rke2 bootstrap provider is added
Expect(configRepo.Providers).To(ContainElement(v1alpha1.Provider{
Name: "rke2",
Type: "BootstrapProvider",
URL: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.10.0/bootstrap-components.yaml",
URL: "https://github.com/rancher/cluster-api-provider-rke2/releases/v0.11.0/bootstrap-components.yaml",
}))

// Ensure a new fleet addon provider is added
Expand Down

0 comments on commit 9a5fae4

Please sign in to comment.