Skip to content

Commit 152c0e1

Browse files
authored
Merge pull request #362 from CecileRobertMichon/capi-0.2.9
Update capi to 0.2.9
2 parents b4ffb37 + b7c4749 commit 152c0e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

examples/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ kustomize build "${SOURCE_DIR}/machinedeployment" | envsubst >> "${MACHINEDEPLOY
127127
echo "Generated ${MACHINEDEPLOYMENT_GENERATED_FILE}"
128128

129129
# Generate Cluster API provider components file.
130-
curl -L https://github.com/kubernetes-sigs/cluster-api/releases/download/v0.2.7/cluster-api-components.yaml > "${COMPONENTS_CLUSTER_API_GENERATED_FILE}"
130+
curl -L https://github.com/kubernetes-sigs/cluster-api/releases/download/v0.2.9/cluster-api-components.yaml > "${COMPONENTS_CLUSTER_API_GENERATED_FILE}"
131131
echo "Downloaded ${COMPONENTS_CLUSTER_API_GENERATED_FILE}"
132132

133133
# Generate Kubeadm Bootstrap Provider components file.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
2424
k8s.io/klog v1.0.0
2525
k8s.io/utils v0.0.0-20190809000727-6c36bc71fc4a
26-
sigs.k8s.io/cluster-api v0.2.7
26+
sigs.k8s.io/cluster-api v0.2.9
2727
sigs.k8s.io/cluster-api-bootstrap-provider-kubeadm v0.1.3
2828
sigs.k8s.io/controller-runtime v0.3.0
2929
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ modernc.org/mathutil v1.0.0/go.mod h1:wU0vUrJsVWBZ4P6e7xtFJEhFSNsfRLJ8H458uRjg03
404404
modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs=
405405
modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I=
406406
sigs.k8s.io/cluster-api v0.2.5/go.mod h1:Agc72Ra5LMOkQQ2v/Ywv1KUemaYAwvkQ+G59Ym5H8e4=
407-
sigs.k8s.io/cluster-api v0.2.7 h1:WjhtuvyjnMgo62kKlVizhI/nYs4DJxHNf+ZMSk/uUsM=
408-
sigs.k8s.io/cluster-api v0.2.7/go.mod h1:Agc72Ra5LMOkQQ2v/Ywv1KUemaYAwvkQ+G59Ym5H8e4=
407+
sigs.k8s.io/cluster-api v0.2.9 h1:PZSuz8hE1u5Y5lZcxi3pDDOc9xxY68uzxVoNGerEXy8=
408+
sigs.k8s.io/cluster-api v0.2.9/go.mod h1:BCw+Pqy1sc8mQ/3d2NZM/f5BApKFCMPsnGvKolvDcA0=
409409
sigs.k8s.io/cluster-api-bootstrap-provider-kubeadm v0.1.3 h1:GMpyX3FYSeHmXK+6VHq+khIKV5KkqGXfkbtAJN0Rm04=
410410
sigs.k8s.io/cluster-api-bootstrap-provider-kubeadm v0.1.3/go.mod h1:916zreHrHzA66A3yzL0M0HCW8JeddmJa6Nzjnrfop4U=
411411
sigs.k8s.io/controller-runtime v0.3.0 h1:ZtdgqJXVHsIytjdmDuk0QjagnzyLq9FjojXRqIp+dU4=

test/e2e/azure_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var _ = BeforeSuite(func() {
105105
Expect(mgmt).NotTo(BeNil())
106106

107107
// TODO Figure out how to keep these versions in sync across the code base
108-
capi := &generators.ClusterAPI{Version: "v0.2.7"}
108+
capi := &generators.ClusterAPI{Version: "v0.2.9"}
109109
cabpk := &generators.Bootstrap{Version: "v0.1.5"}
110110
infra := &generators.Infra{Creds: creds}
111111

0 commit comments

Comments
 (0)