Skip to content

Commit 4c084f7

Browse files
authored
Merge branch 'k8snetworkplumbingwg:master' into master
2 parents b53148b + 9c2771b commit 4c084f7

File tree

366 files changed

+3671
-695
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

366 files changed

+3671
-695
lines changed

deployments/multus-daemonset-crio.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ spec:
197197
privileged: true
198198
capabilities:
199199
add: ["SYS_ADMIN"]
200+
terminationMessagePolicy: FallbackToLogsOnError
200201
volumeMounts:
201202
- name: run
202203
mountPath: /run

deployments/multus-daemonset-thick.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ spec:
165165
memory: "50Mi"
166166
securityContext:
167167
privileged: true
168+
terminationMessagePolicy: FallbackToLogsOnError
168169
volumeMounts:
169170
- name: cni
170171
mountPath: /host/etc/cni/net.d
@@ -208,6 +209,7 @@ spec:
208209
memory: "15Mi"
209210
securityContext:
210211
privileged: true
212+
terminationMessagePolicy: FallbackToLogsOnError
211213
volumeMounts:
212214
- name: cnibin
213215
mountPath: /host/opt/cni/bin

deployments/multus-daemonset.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ spec:
194194
memory: "50Mi"
195195
securityContext:
196196
privileged: true
197+
terminationMessagePolicy: FallbackToLogsOnError
197198
volumeMounts:
198199
- name: cni
199200
mountPath: /host/etc/cni/net.d
@@ -214,6 +215,7 @@ spec:
214215
memory: "15Mi"
215216
securityContext:
216217
privileged: true
218+
terminationMessagePolicy: FallbackToLogsOnError
217219
volumeMounts:
218220
- name: cnibin
219221
mountPath: /host/opt/cni/bin

go.mod

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ go 1.21
44

55
require (
66
github.com/blang/semver v3.5.1+incompatible
7-
github.com/containernetworking/cni v1.1.2
7+
github.com/containernetworking/cni v1.2.0-rc1
88
github.com/containernetworking/plugins v1.1.0
99
github.com/fsnotify/fsnotify v1.6.0
1010
github.com/go-logr/logr v1.3.0 // indirect
11-
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.5.0
12-
github.com/onsi/ginkgo/v2 v2.13.0
13-
github.com/onsi/gomega v1.29.0
11+
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.0
12+
github.com/onsi/ginkgo/v2 v2.13.2
13+
github.com/onsi/gomega v1.30.0
1414
github.com/pkg/errors v0.9.1 // indirect
1515
github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5
1616
golang.org/x/net v0.17.0
17-
golang.org/x/sys v0.13.0
17+
golang.org/x/sys v0.14.0
1818
google.golang.org/grpc v1.58.3
1919
gopkg.in/natefinch/lumberjack.v2 v2.0.0
2020
k8s.io/api v0.29.0
@@ -33,6 +33,7 @@ require (
3333
)
3434

3535
require (
36+
github.com/Masterminds/semver/v3 v3.2.1 // indirect
3637
github.com/beorn7/perks v1.0.1 // indirect
3738
github.com/cespare/xxhash/v2 v2.2.0 // indirect
3839
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -62,12 +63,12 @@ require (
6263
github.com/prometheus/client_model v0.4.0 // indirect
6364
github.com/prometheus/common v0.44.0 // indirect
6465
github.com/prometheus/procfs v0.10.1 // indirect
65-
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
66+
github.com/vishvananda/netns v0.0.4 // indirect
6667
golang.org/x/oauth2 v0.10.0 // indirect
6768
golang.org/x/term v0.13.0 // indirect
6869
golang.org/x/text v0.13.0 // indirect
6970
golang.org/x/time v0.3.0 // indirect
70-
golang.org/x/tools v0.12.0 // indirect
71+
golang.org/x/tools v0.14.0 // indirect
7172
google.golang.org/appengine v1.6.7 // indirect
7273
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
7374
google.golang.org/protobuf v1.33.0 // indirect

go.sum

Lines changed: 18 additions & 40 deletions
Large diffs are not rendered by default.

vendor/github.com/Masterminds/semver/v3/.gitignore

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Masterminds/semver/v3/.golangci.yml

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Masterminds/semver/v3/CHANGELOG.md

Lines changed: 214 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Masterminds/semver/v3/LICENSE.txt

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Masterminds/semver/v3/Makefile

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)