-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25149 from aartij17/capv-jobs
Add e2e/upgrade/conformance presubmit and periodic tests
- Loading branch information
Showing
3 changed files
with
160 additions
and
41 deletions.
There are no files selected for viewing
37 changes: 0 additions & 37 deletions
37
...ig/jobs/kubernetes-sigs/cluster-api-provider-vsphere/cluster-api-provider-vsphere-ci.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 114 additions & 0 deletions
114
.../kubernetes-sigs/cluster-api-provider-vsphere/cluster-api-provider-vsphere-periodics.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
periodics: | ||
- name: periodic-cluster-api-provider-vsphere-e2e-main | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-cluster-api-provider-vsphere-e2e-config: "true" | ||
preset-cluster-api-provider-vsphere-gcs-creds: "true" | ||
preset-kind-volume-mounts: "true" | ||
decorate: true | ||
interval: 12h | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api-provider-vsphere | ||
base_ref: master | ||
path_alias: sigs.k8s.io/cluster-api-provider-vsphere | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20220124-681f3531ec-1.23 | ||
command: | ||
- runner.sh | ||
args: | ||
- ./hack/e2e.sh | ||
env: | ||
- name: GINKGO_SKIP | ||
value: "\\[Conformance\\] \\[clusterctl-Upgrade\\]" | ||
# we need privileged mode in order to do docker in docker | ||
securityContext: | ||
privileged: true | ||
capabilities: | ||
add: ["NET_ADMIN"] | ||
resources: | ||
requests: | ||
cpu: "4000m" | ||
memory: "6Gi" | ||
annotations: | ||
testgrid-dashboards: vmware-cluster-api-provider-vsphere, sig-cluster-lifecycle-cluster-api-provider-vsphere | ||
testgrid-tab-name: periodic-e2e-main | ||
testgrid-alert-email: k8s-testing-clusterapi-vsphere+alerts@groups.vmware.com | ||
description: Runs all the e2e tests | ||
|
||
- name: periodic-cluster-api-provider-vsphere-conformance-main | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-cluster-api-provider-vsphere-e2e-config: "true" | ||
preset-cluster-api-provider-vsphere-gcs-creds: "true" | ||
preset-kind-volume-mounts: "true" | ||
decorate: true | ||
interval: 12h | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api-provider-vsphere | ||
base_ref: master | ||
path_alias: sigs.k8s.io/cluster-api-provider-vsphere | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20220124-681f3531ec-1.23 | ||
command: | ||
- runner.sh | ||
args: | ||
- ./hack/e2e.sh | ||
env: | ||
- name: GINKGO_FOCUS | ||
value: "\\[Conformance\\]" | ||
# we need privileged mode in order to do docker in docker | ||
securityContext: | ||
privileged: true | ||
capabilities: | ||
add: ["NET_ADMIN"] | ||
resources: | ||
requests: | ||
cpu: "4000m" | ||
memory: "6Gi" | ||
annotations: | ||
testgrid-dashboards: vmware-cluster-api-provider-vsphere, sig-cluster-lifecycle-cluster-api-provider-vsphere | ||
testgrid-tab-name: periodic-conformance-main | ||
testgrid-alert-email: k8s-testing-clusterapi-vsphere+alerts@groups.vmware.com | ||
description: Runs conformance tests for CAPV | ||
|
||
- name: periodic-cluster-api-provider-vsphere-upgrade-main | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-cluster-api-provider-vsphere-e2e-config: "true" | ||
preset-cluster-api-provider-vsphere-gcs-creds: "true" | ||
preset-kind-volume-mounts: "true" | ||
decorate: true | ||
interval: 12h | ||
extra_refs: | ||
- org: kubernetes-sigs | ||
repo: cluster-api-provider-vsphere | ||
base_ref: master | ||
path_alias: sigs.k8s.io/cluster-api-provider-vsphere | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20220124-681f3531ec-1.23 | ||
command: | ||
- runner.sh | ||
args: | ||
- ./hack/e2e.sh | ||
env: | ||
- name: GINKGO_FOCUS | ||
value: "\\[clusterctl-Upgrade\\]" | ||
# we need privileged mode in order to do docker in docker | ||
securityContext: | ||
privileged: true | ||
capabilities: | ||
add: ["NET_ADMIN"] | ||
resources: | ||
requests: | ||
cpu: "4000m" | ||
memory: "6Gi" | ||
annotations: | ||
testgrid-dashboards: vmware-cluster-api-provider-vsphere, sig-cluster-lifecycle-cluster-api-provider-vsphere | ||
testgrid-tab-name: periodic-clusterctl-upgrade-main | ||
testgrid-alert-email: k8s-testing-clusterapi-vsphere+alerts@groups.vmware.com | ||
description: Runs clusterctl upgrade tests for CAPV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters