diff --git a/config/jobs/kubernetes-sigs/hydrophone/hydrophone-presubmit.yaml b/config/jobs/kubernetes-sigs/hydrophone/hydrophone-presubmit.yaml index 9619416b1f8d..4c6cca122b56 100644 --- a/config/jobs/kubernetes-sigs/hydrophone/hydrophone-presubmit.yaml +++ b/config/jobs/kubernetes-sigs/hydrophone/hydrophone-presubmit.yaml @@ -68,9 +68,49 @@ presubmits: testgrid-tab-name: hydrophone-verify - name: pull-hydrophone-dry-run cluster: eks-prow-build-cluster + always_run: true + decorate: true + path_alias: "sigs.k8s.io/hydrophone" + labels: + preset-dind-enabled: "true" + preset-kind-volume-mounts: "true" + spec: + containers: + - image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240111-cf1d81388e-master + command: + - runner.sh + env: + - name: K8S_VERSION + value: "v1.29.0" + - name: KIND_VERSION + value: "v0.20.0" + - name: FOCUS + value: "Simple pod should contain last line of the log" + - name: DRYRUN + value: "true" + - name: CHECK_DURATION + value: "true" + args: + - bash + - -c + - | + make build + hack/run-e2e.sh + # docker-in-docker needs privileged mode + securityContext: + privileged: true + resources: + requests: + cpu: 2 + memory: 4Gi + limits: + cpu: 2 + memory: 4Gi annotations: testgrid-dashboards: sig-testing-misc testgrid-tab-name: hydrophone-dry-run + - name: pull-hydrophone-simple-run + cluster: eks-prow-build-cluster always_run: true decorate: true path_alias: "sigs.k8s.io/hydrophone" @@ -87,12 +127,16 @@ presubmits: value: "v1.29.0" - name: KIND_VERSION value: "v0.20.0" + - name: FOCUS + value: "Simple pod should contain last line of the log" + - name: CHECK_DURATION + value: "true" args: - bash - -c - | make build - hack/dryrun-e2e.sh + hack/run-e2e.sh # docker-in-docker needs privileged mode securityContext: privileged: true @@ -103,3 +147,6 @@ presubmits: limits: cpu: 2 memory: 4Gi + annotations: + testgrid-dashboards: sig-testing-misc + testgrid-tab-name: hydrophone-simple-run