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

Create a node e2e testjob with Podutils to validate migration #19942

Merged
merged 1 commit into from
Nov 13, 2020
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
43 changes: 43 additions & 0 deletions config/jobs/kubernetes/sig-node/sig-node-presubmit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,49 @@ presubmits:
requests:
cpu: 4
memory: 6Gi
- name: pull-kubernetes-node-e2e-podutil
skip_branches:
- release-\d+\.\d+ # per-release image
annotations:
fork-per-release: "true"
testgrid-alert-stale-results-hours: "24"
testgrid-create-test-group: "true"
testgrid-num-failures-to-alert: "10"
always_run: false
decorate: true
cluster: k8s-infra-prow-build
max_concurrency: 12
labels:
preset-service-account: "true"
preset-k8s-ssh: "true"
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20201111-a263fd7-master
command:
- runner.sh
- kubetest
args:
- --test
- --up
- --down
- --build=quick
- --timeout=90m
- --dump=$(ARTIFACTS)
- --deployment=node
- --provider=gce
- --gcp-zone=us-west1-b
- --node-test-args=--kubelet-flags="--cgroups-per-qos=true --cgroup-root=/"
- --node-tests=true
- --test_args=--nodes=8 --focus="\[NodeConformance\]" --skip="\[Flaky\]|\[Slow\]|\[Serial\]"
- --timeout=65m
- --node-args=--image-config-file=/workspace/test-infra/jobs/e2e_node/image-config.yaml
resources:
limits:
cpu: 4
memory: 6Gi
requests:
cpu: 4
memory: 6Gi
- name: pull-kubernetes-e2e-containerd-gce
always_run: false
optional: true
Expand Down
3 changes: 3 additions & 0 deletions config/testgrids/kubernetes/sig-node/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ dashboards:
- name: pull-e2e-gci
test_group_name: pull-kubernetes-e2e-containerd-gce
base_options: width=10
- name: pull-e2e-podutil
test_group_name: pull-kubernetes-node-e2e-podutil
base_options: width=10

- name: sig-node-ppc64le
dashboard_tab:
Expand Down