-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: PrimalPimmy <[email protected]> Fixes Signed-off-by: PrimalPimmy <[email protected]> Fixes Signed-off-by: PrimalPimmy <[email protected]> Fixes2 Signed-off-by: PrimalPimmy <[email protected]>
- Loading branch information
1 parent
291c2b6
commit 0111c01
Showing
3 changed files
with
128 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,96 @@ | ||
name: ci-test-seccomp | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "KubeArmor/**" | ||
- "tests/**" | ||
- "protobuf/**" | ||
- ".github/workflows/ci-test-seccomp.yml" | ||
- "pkg/KubeArmorOperator/**" | ||
- "deployments/helm/**" | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- "KubeArmor/**" | ||
- "tests/**" | ||
- "protobuf/**" | ||
- ".github/workflows/ci-test-seccomp.yml" | ||
- "pkg/KubeArmorOperator/**" | ||
- "deployments/helm/**" | ||
|
||
# Declare default permissions as read only. | ||
permissions: read-all | ||
|
||
jobs: | ||
build: | ||
name: Auto-testing Framework / ${{ matrix.os }} / ${{ matrix.runtime }} | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
RUNTIME: ${{ matrix.runtime }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-20.04] | ||
runtime: ["docker", "containerd", "crio"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "v1.20" | ||
|
||
- name: Install the latest LLVM toolchain | ||
run: ./.github/workflows/install-llvm.sh | ||
|
||
- name: Compile libbpf | ||
run: ./.github/workflows/install-libbpf.sh | ||
|
||
- name: Setup a Kubernetes environment | ||
run: ./.github/workflows/install-k3s.sh | ||
|
||
- name: Generate KubeArmor artifacts | ||
run: | | ||
sudo cp ./.github/workflows/kube.json /var/lib/kubelet/seccomp/profiles/kube.json | ||
kubectl apply -f ./.github/workflows/kubearmor-seccomp.yaml | ||
- name: Test KubeArmor using Ginkgo | ||
run: | | ||
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo | ||
make | ||
working-directory: ./tests/k8s_env | ||
timeout-minutes: 30 | ||
|
||
- name: Get karmor sysdump | ||
if: ${{ failure() }} | ||
run: | | ||
kubectl describe pod -n kubearmor -l kubearmor-app=kubearmor | ||
curl -sfL http://get.kubearmor.io/ | sudo sh -s -- -b /usr/local/bin | ||
mkdir -p /tmp/kubearmor/ && cd /tmp/kubearmor && karmor sysdump | ||
- name: Archive log artifacts | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: kubearmor.logs | ||
path: | | ||
/tmp/kubearmor/ | ||
/tmp/kubearmor.* | ||
- name: Measure code coverage | ||
if: ${{ always() }} | ||
run: | | ||
go install github.com/modocache/gover@latest | ||
gover | ||
go tool cover -func=gover.coverprofile | ||
working-directory: KubeArmor | ||
env: | ||
GOPATH: /home/runner/go | ||
|
||
- uses: codecov/codecov-action@v3 | ||
if: ${{ always() }} | ||
with: | ||
files: ./KubeArmor/gover.coverprofile |
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,32 @@ | ||
{ | ||
"architectures": [ | ||
"SCMP_ARCH_X86_64" | ||
], | ||
"defaultAction": "SCMP_ACT_ERRNO", | ||
"syscalls": [ | ||
{ | ||
"action": "SCMP_ACT_ALLOW", | ||
"names": [ | ||
"close", | ||
"bpf", | ||
"nanosleep", | ||
"write", | ||
"tgkill", | ||
"sched_yield", | ||
"ioctl", | ||
"rt_sigprocmask", | ||
"munmap", | ||
"open", | ||
"epoll_pwait", | ||
"read", | ||
"readlinkat", | ||
"getpid", | ||
"futex", | ||
"epoll_wait", | ||
"kill", | ||
"rt_sigreturn", | ||
"mmap" | ||
] | ||
} | ||
] | ||
} |
Empty file.