Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 [release-1.9] Bump CAPV to from v1.8.10 and v1.7.7 for upgrade tests #3124

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/e2e/clusterctl_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var _ = Describe("When testing clusterctl upgrades using ClusterClass (CAPV 1.8=
InitWithCoreProvider: "cluster-api:v1.5.4",
InitWithBootstrapProviders: []string{"kubeadm:v1.5.4"},
InitWithControlPlaneProviders: []string{"kubeadm:v1.5.4"},
InitWithInfrastructureProviders: []string{"vsphere:v1.8.4"},
InitWithInfrastructureProviders: []string{"vsphere:v1.8.10"},
InitWithRuntimeExtensionProviders: []string{},
// InitWithKubernetesVersion should be the highest kubernetes version supported by the init Cluster API version.
// This is to guarantee that both, the old and new CAPI version, support the defined version.
Expand All @@ -63,7 +63,7 @@ var _ = Describe("When testing clusterctl upgrades using ClusterClass (CAPV 1.7=
InitWithCoreProvider: "cluster-api:v1.4.9",
InitWithBootstrapProviders: []string{"kubeadm:v1.4.9"},
InitWithControlPlaneProviders: []string{"kubeadm:v1.4.9"},
InitWithInfrastructureProviders: []string{"vsphere:v1.7.4"},
InitWithInfrastructureProviders: []string{"vsphere:v1.7.7"},
InitWithRuntimeExtensionProviders: []string{},
// InitWithKubernetesVersion should be the highest kubernetes version supported by the init Cluster API version.
// This is to guarantee that both, the old and new CAPI version, support the defined version.
Expand Down
26 changes: 13 additions & 13 deletions test/e2e/config/vsphere-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
# For creating local images, run ./hack/e2e.sh

images:
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.6.1
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.6.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.6.1
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.6.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.6.1
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.6.7
loadBehavior: tryLoad
- name: gcr.io/k8s-staging-cluster-api/capv-manager:e2e
loadBehavior: mustLoad
Expand All @@ -28,9 +28,9 @@ providers:
- name: cluster-api
type: CoreProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/core-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/core-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down Expand Up @@ -62,9 +62,9 @@ providers:
- name: kubeadm
type: BootstrapProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/bootstrap-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/bootstrap-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down Expand Up @@ -96,9 +96,9 @@ providers:
- name: kubeadm
type: ControlPlaneProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/control-plane-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/control-plane-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down Expand Up @@ -156,19 +156,19 @@ providers:
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/main/cluster-template.yaml"
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/main/clusterclass-quick-start.yaml"
- sourcePath: "../data/shared/main/v1beta1_provider/metadata.yaml"
- name: v1.8.4
- name: v1.8.10
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.8.4/infrastructure-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.8.10/infrastructure-components.yaml"
type: "url"
contract: v1beta1
files:
# Add a cluster template
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/v1.8/cluster-template-workload.yaml"
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/v1.8/clusterclass-quick-start.yaml"
- sourcePath: "../data/shared/v1.8/v1beta1_provider/metadata.yaml"
- name: v1.7.4
- name: v1.7.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.7.4/infrastructure-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.7.7/infrastructure-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down
26 changes: 13 additions & 13 deletions test/e2e/config/vsphere-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
# - from the CAPV repository root, `make e2e` to build the vsphere provider image and run e2e tests.

images:
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.6.1
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.6.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.6.1
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.6.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.6.1
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.6.7
loadBehavior: tryLoad
- name: gcr.io/k8s-staging-cluster-api/capv-manager:e2e
loadBehavior: mustLoad
Expand All @@ -31,9 +31,9 @@ providers:
- name: cluster-api
type: CoreProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/core-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/core-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down Expand Up @@ -65,9 +65,9 @@ providers:
- name: kubeadm
type: BootstrapProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/bootstrap-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/bootstrap-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down Expand Up @@ -99,9 +99,9 @@ providers:
- name: kubeadm
type: ControlPlaneProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/control-plane-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/control-plane-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down Expand Up @@ -159,19 +159,19 @@ providers:
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/main/cluster-template.yaml"
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/main/clusterclass-quick-start.yaml"
- sourcePath: "../data/shared/main/v1beta1_provider/metadata.yaml"
- name: v1.8.4
- name: v1.8.10
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.8.4/infrastructure-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.8.10/infrastructure-components.yaml"
type: "url"
contract: v1beta1
files:
# Add a cluster template
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/v1.8/cluster-template-workload.yaml"
- sourcePath: "../../../test/e2e/data/infrastructure-vsphere/v1.8/clusterclass-quick-start.yaml"
- sourcePath: "../data/shared/v1.8/v1beta1_provider/metadata.yaml"
- name: v1.7.4
- name: v1.7.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.7.4/infrastructure-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api-provider-vsphere/releases/download/v1.7.7/infrastructure-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down
18 changes: 9 additions & 9 deletions test/integration/integration-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
# - from the CAPV repository root, `make e2e` to build the vsphere provider image and run e2e tests.

images:
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.6.1
- name: registry.k8s.io/cluster-api/cluster-api-controller:v1.6.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.6.1
- name: registry.k8s.io/cluster-api/kubeadm-bootstrap-controller:v1.6.7
loadBehavior: tryLoad
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.6.1
- name: registry.k8s.io/cluster-api/kubeadm-control-plane-controller:v1.6.7
loadBehavior: tryLoad
- name: gcr.io/k8s-staging-cluster-api/capv-manager:e2e
loadBehavior: mustLoad
Expand All @@ -30,9 +30,9 @@ providers:
- name: cluster-api
type: CoreProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/core-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/core-components.yaml"
type: "url"
contract: v1beta1
files:
Expand All @@ -44,9 +44,9 @@ providers:
- name: kubeadm
type: BootstrapProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/bootstrap-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/bootstrap-components.yaml"
type: "url"
contract: v1beta1
files:
Expand All @@ -58,9 +58,9 @@ providers:
- name: kubeadm
type: ControlPlaneProvider
versions:
- name: v1.6.1
- name: v1.6.7
# Use manifest from source files
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.1/control-plane-components.yaml"
value: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.6.7/control-plane-components.yaml"
type: "url"
contract: v1beta1
files:
Expand Down
Loading