Skip to content

Commit

Permalink
add kind e2e for alpha features
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahuif committed May 25, 2023
1 parent 3380f52 commit 059b498
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions config/jobs/kubernetes/sig-testing/kubernetes-kind-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,51 @@ presubmits:
testgrid-alert-stale-results-hours: '24'
testgrid-create-test-group: 'true'
testgrid-dashboards: sig-testing-kind

- name: pull-kubernetes-e2e-kind-alpha-features
cluster: k8s-infra-prow-build
optional: true
always_run: false
decorate: true
skip_branches:
- release-\d+\.\d+ # per-release settings
labels:
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
decoration_config:
timeout: 60m
grace_period: 15m
path_alias: k8s.io/kubernetes
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/krte:v20230421-ec4335b54b-master
command:
- wrapper.sh
- bash
- -c
- curl -sSL https://kind.sigs.k8s.io/dl/latest/linux-amd64.tgz | tar xvfz - -C "${PATH%%:*}/" && e2e-k8s.sh
env:
- name: FEATURE_GATES
value: '{"AllAlpha":true}'
- name: RUNTIME_CONFIG
value: '{"api/alpha":"true"}'
- name: FOCUS
value: \[Alpha\]
- name: SKIP
value: \[Slow\]|\[Disruptive\]|\[Flaky\]|PodSecurityPolicy|LoadBalancer|load.balancer|Simple.pod.should.support.exec.through.an.HTTP.proxy|subPath.should.support.existing|NFS|nfs|inline.execution.and.attach|should.be.rejected.when.no.endpoints.exist
- name: PARALLEL
value: "true"
# we need privileged mode in order to do docker in docker
securityContext:
privileged: true
resources:
limits:
cpu: 7
memory: 9000Mi
requests:
cpu: 7
memory: 9000Mi
annotations:
testgrid-num-failures-to-alert: '10'
testgrid-alert-stale-results-hours: '24'
testgrid-create-test-group: 'true'

0 comments on commit 059b498

Please sign in to comment.