Skip to content

Commit

Permalink
First iteration of seccomp testing
Browse files Browse the repository at this point in the history
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
PrimalPimmy committed Feb 15, 2024
1 parent 291c2b6 commit 0111c01
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 0 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/ci-test-seccomp.yml
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
32 changes: 32 additions & 0 deletions .github/workflows/kube.json
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.

0 comments on commit 0111c01

Please sign in to comment.