Skip to content

Commit

Permalink
fix(scheduler): ignore OTel security issue in scheduler (#2364)
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <ondrej.dubaj@dynatrace.com>
  • Loading branch information
odubajDT authored Oct 30, 2023
1 parent 76ed884 commit a10594f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/security-scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@ jobs:
- "scheduler"
- "certificate-operator"
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'true'

- name: Download images
id: download_images
uses: actions/download-artifact@v3
Expand All @@ -213,6 +219,7 @@ jobs:
input: "images/${{ matrix.image }}-image.tar/${{ matrix.image }}-image.tar"
severity: 'CRITICAL,HIGH'
exit-code: '1'
trivyignores: .trivyignore

govulncheck:
name: Govulncheck
Expand Down
7 changes: 7 additions & 0 deletions .trivyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# DoS vulnerability in otelhttp in scheduler
# The scheduler uses an old version of k8s,
# what forces us to use an older version of OTel
# which has the vulnerability.
# As the scheduler will be removed soon, there is no need
# to invest time to fix it.
CVE-2023-45142

0 comments on commit a10594f

Please sign in to comment.