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

Added simple run test to hydrophone #31640

Merged
merged 1 commit into from
Jan 17, 2024
Merged
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
49 changes: 48 additions & 1 deletion config/jobs/kubernetes-sigs/hydrophone/hydrophone-presubmit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand All @@ -103,3 +147,6 @@ presubmits:
limits:
cpu: 2
memory: 4Gi
annotations:
testgrid-dashboards: sig-testing-misc
testgrid-tab-name: hydrophone-simple-run