-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inject Pod and Container Security Context (#38)
* Inject Pod and Container Security Context * Inject Pod and Container Security Context * fix vulnerabilities * fix vulnerabilities * update trivy ignores --------- Co-authored-by: Ravi Singal <[email protected]>
- Loading branch information
1 parent
34bfa83
commit efc248e
Showing
9 changed files
with
371 additions
and
2,432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,2 @@ | ||
# org.scala-lang:scala-library (from upstream opensource dependency) | ||
CVE-2022-36944 exp:2023-09-30 | ||
|
||
# org.xerial.snappy:snappy-java (from upstream opensource dependency) | ||
CVE-2023-34453 exp:2023-09-30 | ||
|
||
# org.xerial.snappy:snappy-java (from upstream opensource dependency) | ||
CVE-2023-34454 exp:2023-09-30 | ||
|
||
# org.xerial.snappy:snappy-java (from upstream opensource dependency) | ||
CVE-2023-34455 exp:2023-09-30 | ||
|
||
# usr/local/bin/kubectl (gobinary) | ||
CVE-2023-2253 exp:2023-09-30 | ||
CVE-2024-34156 exp:2024-10-31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.21 AS builder | ||
FROM golang:1.22.7 AS builder | ||
COPY src/main/go /opt | ||
WORKDIR /opt | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
module hypertrace.org/kafka-topic-creator | ||
|
||
go 1.21 | ||
go 1.22.7 | ||
|
||
require ( | ||
github.com/confluentinc/confluent-kafka-go/v2 v2.1.0 | ||
github.com/confluentinc/confluent-kafka-go/v2 v2.5.3 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,7 @@ jobName: "" | |
configMapName: "" | ||
|
||
workloads: [] | ||
|
||
resources: {} | ||
containerSecurityContext: {} | ||
podSecurityContext: {} |