-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config): Add syscalls-related fields
feat: Add go.work to use two mods feat(config): Add the adapter's config feat(receiver): Add a receiver for the adapter feat(core): Add a transformer and Applier for the adapter feat(adapter): Add adapter-specific main.go and other files feat(adapter): Add core(converter, enforcer) feat(adapter): Add applier and modify package name featgo.mod): go version to use go.work (requires go >= 1.21) feat(applier): Add license feat(receiver): Add karmor policy delete test(v2): Modify ID Docs: Update Tutorials fix(go.mod): Resolve lint fix(gomod): resolve golangci-lint Update Quick-tutorials.md Update nimbus-adapter Update nimbus-adapter
- Loading branch information
1 parent
19c2e51
commit 92779ae
Showing
30 changed files
with
1,336 additions
and
838 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
*.dylib | ||
bin | ||
Dockerfile.cross | ||
nimbus-kubearmor | ||
|
||
# Test binary, build with `go test -c` | ||
*.test | ||
|
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
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,6 +1,6 @@ | ||
module github.com/5GSEC/nimbus | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/cilium/cilium v1.14.3 | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
go 1.21 | ||
|
||
use ( | ||
./ | ||
./pkg/nimbus-kubearmor | ||
) |
Oops, something went wrong.