k8s.io/test-infra@v0.0.0-20240520184403-27c6b4c223d8/config/jobs/kubernetes-sigs/kind/kind-release-blocking.yaml (about)

     1  periodics:
     2  - interval: 1h
     3    cluster: k8s-infra-prow-build
     4    name: ci-kubernetes-kind-e2e-parallel
     5    annotations:
     6      testgrid-dashboards: sig-release-master-blocking, sig-testing-kind
     7      testgrid-tab-name: kind-master-parallel
     8      description: Uses kubetest to run e2e tests against a latest kubernetes master cluster created with sigs.k8s.io/kind
     9      testgrid-alert-email: bentheelder@google.com,antonio.ojea.garcia@gmail.com,release-team@kubernetes.io
    10      testgrid-num-columns-recent: '6'
    11      fork-per-release: "true"
    12      fork-per-release-periodic-interval: 1h 2h 6h 24h
    13    labels:
    14      preset-dind-enabled: "true"
    15      preset-kind-volume-mounts: "true"
    16    decorate: true
    17    decoration_config:
    18      timeout: 60m
    19    extra_refs:
    20    - org: kubernetes
    21      repo: kubernetes
    22      base_ref: master
    23      path_alias: k8s.io/kubernetes
    24    spec:
    25      containers:
    26      - image: gcr.io/k8s-staging-test-infra/krte:v20240515-17c6d50e24-master
    27        command:
    28        - wrapper.sh
    29        - bash
    30        - -c
    31        - curl -sSL https://kind.sigs.k8s.io/dl/latest/linux-amd64.tgz | tar xvfz - -C "${PATH%%:*}/" && e2e-k8s.sh
    32        env:
    33        - name: FOCUS
    34          value: "."
    35        # TODO(bentheelder): reduce the skip list further
    36        - name: SKIP
    37          value: \[Slow\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]|PodSecurityPolicy|LoadBalancer|load.balancer|In-tree.Volumes.\[Driver:.nfs\]|PersistentVolumes.NFS|Network.should.set.TCP.CLOSE_WAIT.timeout|Simple.pod.should.support.exec.through.an.HTTP.proxy|subPath.should.support.existing|should.provide.basic.identity
    38        - name: PARALLEL
    39          value: "true"
    40        # we need privileged mode in order to do docker in docker
    41        securityContext:
    42          privileged: true
    43        resources:
    44          limits:
    45            memory: 9Gi
    46            cpu: 7
    47          requests:
    48            # these are both a bit below peak usage during build
    49            # this is mostly for building kubernetes
    50            memory: 9Gi
    51            cpu: 7
    52  - interval: 1h
    53    cluster: k8s-infra-prow-build
    54    name: ci-kubernetes-kind-ipv6-e2e-parallel
    55    annotations:
    56      testgrid-dashboards: sig-release-master-blocking, sig-testing-kind
    57      testgrid-tab-name: kind-ipv6-master-parallel
    58      description: Uses kubetest to run e2e tests against a latest kubernetes master IPv6 cluster created with sigs.k8s.io/kind
    59      testgrid-alert-email: bentheelder@google.com,antonio.ojea.garcia@gmail.com,release-team@kubernetes.io
    60      testgrid-num-columns-recent: '6'
    61      fork-per-release: "true"
    62      fork-per-release-periodic-interval: 1h 2h 6h 24h
    63    labels:
    64      preset-dind-enabled: "true"
    65      preset-kind-volume-mounts: "true"
    66    decorate: true
    67    decoration_config:
    68      timeout: 60m
    69    extra_refs:
    70    - org: kubernetes
    71      repo: kubernetes
    72      base_ref: master
    73      path_alias: k8s.io/kubernetes
    74    spec:
    75      containers:
    76      - image: gcr.io/k8s-staging-test-infra/krte:v20240515-17c6d50e24-master
    77        command:
    78        - wrapper.sh
    79        - bash
    80        - -c
    81        - curl -sSL https://kind.sigs.k8s.io/dl/latest/linux-amd64.tgz | tar xvfz - -C "${PATH%%:*}/" && e2e-k8s.sh
    82        env:
    83        # enable IPV6 in bootstrap image
    84        - name: DOCKER_IN_DOCKER_IPV6_ENABLED
    85          value: "true"
    86        # tell kind CI script to use ipv6
    87        - name: IP_FAMILY
    88          value: "ipv6"
    89        - name: FOCUS
    90          value: "."
    91        # TODO(bentheelder): reduce the skip list further
    92        - name: SKIP
    93          value: \[Slow\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]|PodSecurityPolicy|LoadBalancer|load.balancer|In-tree.Volumes.\[Driver:.nfs\]|PersistentVolumes.NFS|Network.should.set.TCP.CLOSE_WAIT.timeout|Simple.pod.should.support.exec.through.an.HTTP.proxy|subPath.should.support.existing|should.provide.basic.identity
    94        - name: PARALLEL
    95          value: "true"
    96        # we need privileged mode in order to do docker in docker
    97        securityContext:
    98          privileged: true
    99        resources:
   100          limits:
   101            memory: 9Gi
   102            cpu: 7
   103          requests:
   104            # these are both a bit below peak usage during build
   105            # this is mostly for building kubernetes
   106            memory: 9Gi
   107            # during the tests more like 3-20m is used
   108            cpu: 7