Skip to content

Commit 00509aa

Browse files
committed
go.{mod,sum}: relax selinux requirement to v1.9.1.
Requiring v1.10.0 break CRI-O OpenShift CI e2e tests. While the exact details are not fully understood, this dependency was identified as the culprit for breakage, by manually bisecting commits and rerunning CI tests. The problem manifests itself by failing to bootstrap the cluster with multus-related timeouts or errors. While this is a PITA, current CRI-O codebase depends on opencontainers/selinux v1.9.1, and Kubernetes on v1.8.2. We presumably can safely update the dependency once those move forward. Signed-off-by: Krisztian Litkey <[email protected]>
1 parent 9dc9716 commit 00509aa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/fsnotify/fsnotify v1.5.1 // indirect
2222
github.com/hashicorp/errwrap v1.0.0 // indirect
2323
github.com/inconshreveable/mousetrap v1.0.0 // indirect
24-
github.com/opencontainers/selinux v1.10.0 // indirect
24+
github.com/opencontainers/selinux v1.9.1 // indirect
2525
github.com/pmezard/go-difflib v1.0.0 // indirect
2626
github.com/sirupsen/logrus v1.8.1 // indirect
2727
github.com/spf13/pflag v1.0.5 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,8 @@ github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417/go.m
213213
github.com/opencontainers/runtime-tools v0.0.0-20190417131837-cd1349b7c47e h1:2Tg49TNXSTIsX8AAtmo1aQ1IbfnoUFzkOp7p2iWygtc=
214214
github.com/opencontainers/runtime-tools v0.0.0-20190417131837-cd1349b7c47e/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs=
215215
github.com/opencontainers/selinux v1.8.2/go.mod h1:MUIHuUEvKB1wtJjQdOyYRgOnLD2xAPP8dBsCoU0KuF8=
216+
github.com/opencontainers/selinux v1.9.1 h1:b4VPEF3O5JLZgdTDBmGepaaIbAo0GqoF6EBRq5f/g3Y=
217+
github.com/opencontainers/selinux v1.9.1/go.mod h1:2i0OySw99QjzBBQByd1Gr9gSjvuho1lHsJxIJ3gGbJI=
216218
github.com/opencontainers/selinux v1.10.0 h1:rAiKF8hTcgLI3w0DHm6i0ylVVcOrlgR1kK99DRLDhyU=
217219
github.com/opencontainers/selinux v1.10.0/go.mod h1:2i0OySw99QjzBBQByd1Gr9gSjvuho1lHsJxIJ3gGbJI=
218220
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=

0 commit comments

Comments
 (0)