automation-tests/common
Maya Rashish af3af54b9f Add netbsd on list of OSes alongside freebsd
Signed-off-by: Maya Rashish <maya@NetBSD.org>
2024-06-01 08:43:58 -04:00
..
.github [skip-ci] Update golangci/golangci-lint-action action to v6 2024-05-07 09:38:00 +00:00
cmd/seccomp chore: remove outdated build constraints 2024-01-03 22:56:00 +02:00
contrib/redhat use new "lookaside" setting for RH registries 2024-05-07 13:14:06 -04:00
docs fix outdated firewall_driver docs 2024-05-31 12:23:23 +02:00
hack CI: check for possible diff after make vendor 2023-07-12 14:21:24 +02:00
internal Replace golang.org/x/exp/slices with slices from std 2024-04-22 14:12:47 +02:00
libimage libimage/manifests.list.Add(): preserve artifactType when all=true 2024-05-28 11:03:09 -04:00
libnetwork libnetwork: fix rexec env check for rootlessnetns 2024-05-27 15:18:43 +02:00
logos Sizing adjustment to youki logo 2023-04-05 14:19:53 -04:00
pkg Add netbsd on list of OSes alongside freebsd 2024-06-01 08:43:58 -04:00
rpm [skip-ci] RPM: own dirs 2024-05-31 08:48:37 -04:00
tests new libimage package 2021-04-21 11:17:47 +02:00
tools seccomp: add CI check for up-to-date seccomp.json 2021-01-27 21:40:45 +11:00
vendor fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0 2024-05-24 15:25:05 +00:00
version Bump c/common to v0.60.0-dev 2024-05-22 18:33:24 -04:00
.cirrus.yml CI: update VM to fedora 40 2024-05-15 18:29:06 +02:00
.codespelldict Fix typos across repo; extend codespell config 2024-01-03 23:38:47 +02:00
.codespellrc Packit: New workflow for downstream Fedora and CentOS Stream 10 2024-05-06 08:15:58 -04:00
.gitignore libnetwork/netavark: add test plugin 2023-04-04 18:20:18 +02:00
.golangci-extra.yml Fix missing build tag for c/storage 2024-04-25 16:16:56 +02:00
.golangci.yml Fix missing build tag for c/storage 2024-04-25 16:16:56 +02:00
.packit.yaml [skip-ci] Packit/RPM: more fixes 2024-05-27 09:31:08 -04:00
CODE-OF-CONDUCT.md Add list members emails to the CoC 2023-09-28 14:25:17 -04:00
CONTRIBUTING.md fix typo 2018-12-10 12:57:11 +01:00
LICENSE add Apache 2.0 license file 2019-11-18 10:41:54 +01:00
Makefile lint: update golangci-lint to v1.56.2 2024-03-05 18:10:32 +01:00
OWNERS OWNERS: add @mtrmac 2022-05-19 17:30:17 +02:00
README.md Update README.md 2022-02-23 17:58:54 +01:00
SECURITY.md Touch up Security title 2020-05-04 17:47:51 -04:00
go.mod fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0 2024-05-24 15:25:05 +00:00
go.sum fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0 2024-05-24 15:25:05 +00:00

README.md

containers/common

Location for shared common files and common go code to manage those files in github.com/containers repos.

The common files to one or more projects in the containers group will be kept in this repository.

It will be up to the individual projects to include the files from this repository.

seccomp

The seccomp package in pkg/seccomp is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.

seccomp (short for secure computing mode) is a BPF based syscall filter language and present a more conventional function-call based filtering interface that should be familiar to, and easily adopted by, application developers.

Building the seccomp.json file

The make target make seccomp.json generates the seccomp.json file, which contains the allowed list of syscalls that can be used by container runtime engines like CRI-O, Buildah, Podman and Docker, and container runtimes like OCI Runc to control the syscalls available to containers.

Supported build tags

Contributing

When developing this library, please use make (or make … BUILDTAGS=…) to take advantage of the tests and validation.

Contact