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

Update CIFUZZ base image #24221

Merged
merged 2 commits into from
Nov 3, 2021
Merged
Show file tree
Hide file tree
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
9 changes: 6 additions & 3 deletions config/jobs/kubernetes/test-infra/test-infra-periodics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ periodics:
spec:
serviceAccountName: fuzz-test
containers:
- image: gcr.io/k8s-testimages/ci_fuzz:v20211102-77ba931
#TODO(mpherman) : Change to versioned once stable
- image: gcr.io/k8s-testimages/ci_fuzz:latest
command:
- runner.sh
args:
Expand Down Expand Up @@ -109,7 +110,8 @@ periodics:
spec:
serviceAccountName: fuzz-test
containers:
- image: gcr.io/k8s-testimages/ci_fuzz:v20211102-77ba931
#TODO(mpherman) : Change to versioned once stable
- image: gcr.io/k8s-testimages/ci_fuzz:latest
command:
- runner.sh
args:
Expand Down Expand Up @@ -154,7 +156,8 @@ periodics:
spec:
serviceAccountName: fuzz-test
containers:
- image: gcr.io/k8s-testimages/ci_fuzz:v20211102-77ba931
#TODO(mpherman) : Change to versioned once stable
- image: gcr.io/k8s-testimages/ci_fuzz:latest
command:
- runner.sh
args:
Expand Down
3 changes: 2 additions & 1 deletion experiment/ci-fuzz/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

FROM gcr.io/k8s-staging-test-infra/bootstrap:v20210913-fc7c4e84f6

FROM gcr.io/oss-fuzz-base/cifuzz-base@sha256:b517acf48b7ebd364d145bd12a7eaeeb9f9ba649b8c46b90bbcf9a3fc5141d7d
#TODO(mpherman) : Change to versioned once stable
FROM gcr.io/oss-fuzz-base/cifuzz-base:latest
COPY --from=gcr.io/oss-fuzz-base/cifuzz-base:latest /opt/oss-fuzz /opt/

#
Expand Down