Skip to content

Commit

Permalink
Add signal on kind dual-stack
Browse files Browse the repository at this point in the history
  • Loading branch information
aojea committed Jan 14, 2020
1 parent cdb2ca6 commit a9f31a9
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions config/jobs/kubernetes-sigs/kind/kind-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,54 @@ presubmits:
memory: "9000Mi"
# during the tests more like 3-20m is used
cpu: 2000m
# conformance test against kubernetes master branch with `kind`, skipping
# serial tests so it runs in ~20m
# Dual Stack enabled variant
- name: pull-kind-conformance-parallel-dual-stack-ipv4-ipv6
labels:
preset-service-account: "true"
preset-bazel-scratch-dir: "true"
preset-bazel-remote-cache-enabled: "true"
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
always_run: false
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20200110-80c1ae9-master
env:
# skip serial tests and run with --ginkgo-parallel
- name: "PARALLEL"
value: "true"
# enable IPV6 in bootstrap image
- name: "DOCKER_IN_DOCKER_IPV6_ENABLED"
value: "true"
# tell kind CI script to use ipv6
- name: "IP_FAMILY"
value: "DualStack"
args:
- "--job=$(JOB_NAME)"
- "--root=/go/src"
- "--repo=sigs.k8s.io/kind=$(PULL_REFS)"
- "--repo=k8s.io/kubernetes=master"
- "--service-account=/etc/service-account/service-account.json"
- "--upload=gs://kubernetes-jenkins/pr-logs"
- "--scenario=execute"
- "--"
# the script must run from kubernetes, but we're checking out kind
- "bash"
- "--"
- "-c"
- "cd ./../../k8s.io/kubernetes && ./../../sigs.k8s.io/kind/hack/ci/e2e.sh"
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
resources:
requests:
# these are both a bit below peak usage during build
# this is mostly for building kubernetes
memory: "9000Mi"
# during the tests more like 3-20m is used
cpu: 2000m
# conformance test against kubernetes release-1.16 branch with `kind`, skipping
# serial tests so it runs in ~20m
- name: pull-kind-conformance-parallel-1-16
Expand Down

0 comments on commit a9f31a9

Please sign in to comment.