Skip to content

Commit 157f204

Browse files
saschagrunertk8s-ci-robot
authored andcommitted
Update runc, crun and zeitgeist deps
Signed-off-by: Sascha Grunert <[email protected]>
1 parent 35c94ff commit 157f204

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GOLANGCI_LINT_VERSION = v1.60.2
1818
REPO_INFRA_VERSION = v0.2.5
1919
KUSTOMIZE_VERSION = 5.2.1
2020
OPERATOR_SDK_VERSION ?= v1.25.0
21-
ZEITGEIST_VERSION = v0.5.3
21+
ZEITGEIST_VERSION = v0.5.4
2222
MDTOC_VERSION = v1.4.0
2323
CI_IMAGE ?= golang:1.23
2424

dependencies.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ dependencies:
156156
match: VERSION
157157

158158
- name: crun
159-
version: 1.17
159+
version: 1.18
160160
refPaths:
161161
- path: examples/baseprofile-crun.yaml
162162
match: name
@@ -166,7 +166,7 @@ dependencies:
166166
match: CRUN_VERSION
167167

168168
- name: runc
169-
version: v1.1.15
169+
version: v1.2.0
170170
refPaths:
171171
- path: examples/baseprofile-runc.yaml
172172
match: name
@@ -231,7 +231,7 @@ dependencies:
231231
match: flatcar_developer_container
232232

233233
- name: zeitgeist
234-
version: 0.5.3
234+
version: 0.5.4
235235
refPaths:
236236
- path: Makefile
237237
match: ZEITGEIST_VERSION

examples/baseprofile-crun.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: security-profiles-operator.x-k8s.io/v1beta1
33
kind: SeccompProfile
44
metadata:
5-
name: crun-v1.17
5+
name: crun-v1.18
66
spec:
77
defaultAction: SCMP_ACT_ERRNO
88
architectures:

examples/baseprofile-runc.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: security-profiles-operator.x-k8s.io/v1beta1
33
kind: SeccompProfile
44
metadata:
5-
name: runc-v1.1.15
5+
name: runc-v1.2.0
66
spec:
77
defaultAction: SCMP_ACT_ERRNO
88
architectures:
@@ -18,17 +18,23 @@ spec:
1818
- clone
1919
- clone3
2020
- close
21+
- close_range
2122
- dup3
2223
- epoll_create1
2324
- epoll_ctl
2425
- epoll_pwait
2526
- execve
27+
- exit
2628
- exit_group
29+
- faccessat
2730
- faccessat2
2831
- fchdir
2932
- fchmodat
3033
- fchownat
3134
- fcntl
35+
- fsconfig
36+
- fsmount
37+
- fsopen
3238
- fstat
3339
- fstatfs
3440
- futex
@@ -49,6 +55,7 @@ spec:
4955
- munmap
5056
- nanosleep
5157
- newfstatat
58+
- open_tree
5259
- openat
5360
- openat2
5461
- pipe2
@@ -57,6 +64,7 @@ spec:
5764
- prlimit64
5865
- read
5966
- readlinkat
67+
- recvfrom
6068
- rseq
6169
- rt_sigaction
6270
- rt_sigprocmask
@@ -73,11 +81,11 @@ spec:
7381
- setuid
7482
- sigaltstack
7583
- statfs
84+
- statx
7685
- symlinkat
7786
- tgkill
7887
- umask
7988
- umount2
8089
- unlinkat
81-
- unshare
8290
- utimensat
8391
- write

hack/install-crun

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euox pipefail
33

4-
CRUN_VERSION=1.17
4+
CRUN_VERSION=1.18
55
CRUN_BIN=/tmp/crun
66

77
# Current crun version

installation-usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ metadata:
525525
name: profile1
526526
spec:
527527
defaultAction: SCMP_ACT_ERRNO
528-
baseProfileName: runc-v1.1.15
528+
baseProfileName: runc-v1.2.0
529529
syscalls:
530530
- action: SCMP_ACT_ALLOW
531531
names:
@@ -2002,7 +2002,7 @@ The following checks were performed on each of these signatures:
20022002
16:32:33.208743 Copying profile from repository
20032003
16:32:34.119652 Reading profile
20042004
16:32:34.119677 Trying to unmarshal seccomp profile
2005-
16:32:34.120114 Got SeccompProfile: runc-v1.1.15
2005+
16:32:34.120114 Got SeccompProfile: runc-v1.2.0
20062006
16:32:34.120119 Saving profile in: /tmp/profile.yaml
20072007
```
20082008

@@ -2138,7 +2138,7 @@ way, for example if a profile does not support any platform:
21382138
11:07:18.359152 Trying to read profile: profile-linux-amd64.yaml
21392139
11:07:18.359209 Trying to read profile: profile.yaml
21402140
11:07:18.359224 Trying to unmarshal seccomp profile
2141-
11:07:18.359728 Got SeccompProfile: runc-v1.1.15
2141+
11:07:18.359728 Got SeccompProfile: runc-v1.2.0
21422142
11:07:18.359732 Saving profile in: /tmp/profile.yaml
21432143
```
21442144

test/tc_base_profiles_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
)
2525

2626
const (
27-
baseProfileNameRunc = "runc-v1.1.15"
28-
baseProfileNameCrun = "crun-v1.17"
27+
baseProfileNameRunc = "runc-v1.2.0"
28+
baseProfileNameCrun = "crun-v1.18"
2929
)
3030

3131
func (e *e2e) testCaseBaseProfile([]string) {

0 commit comments

Comments
 (0)