Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
8bb8e38f
Commit
8bb8e38f
authored
Oct 25, 2019
by
Erik Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update vendor
parent
0cc172e8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
.appveyor.yml
vendor/github.com/containerd/containerd/.appveyor.yml
+1
-1
.travis.yml
vendor/github.com/containerd/containerd/.travis.yml
+1
-1
apply_linux.go
...ithub.com/containerd/containerd/diff/apply/apply_linux.go
+6
-0
modules.txt
vendor/modules.txt
+1
-1
No files found.
vendor/github.com/containerd/containerd/.appveyor.yml
View file @
8bb8e38f
...
@@ -12,7 +12,7 @@ environment:
...
@@ -12,7 +12,7 @@ environment:
GOPATH
:
C:\gopath
GOPATH
:
C:\gopath
CGO_ENABLED
:
1
CGO_ENABLED
:
1
matrix
:
matrix
:
-
GO_VERSION
:
1.12.1
0
-
GO_VERSION
:
1.12.1
2
before_build
:
before_build
:
-
choco install -y mingw --version 5.3.0
-
choco install -y mingw --version 5.3.0
...
...
vendor/github.com/containerd/containerd/.travis.yml
View file @
8bb8e38f
...
@@ -10,7 +10,7 @@ os:
...
@@ -10,7 +10,7 @@ os:
-
linux
-
linux
go
:
go
:
-
"
1.12.
x
"
-
"
1.12.
12
"
env
:
env
:
-
TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v1 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic
-
TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v1 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic
...
...
vendor/github.com/containerd/containerd/diff/apply/apply_linux.go
View file @
8bb8e38f
...
@@ -26,12 +26,18 @@ import (
...
@@ -26,12 +26,18 @@ import (
"github.com/containerd/containerd/archive"
"github.com/containerd/containerd/archive"
"github.com/containerd/containerd/errdefs"
"github.com/containerd/containerd/errdefs"
"github.com/containerd/containerd/mount"
"github.com/containerd/containerd/mount"
"github.com/opencontainers/runc/libcontainer/system"
"github.com/pkg/errors"
"github.com/pkg/errors"
)
)
func
apply
(
ctx
context
.
Context
,
mounts
[]
mount
.
Mount
,
r
io
.
Reader
)
error
{
func
apply
(
ctx
context
.
Context
,
mounts
[]
mount
.
Mount
,
r
io
.
Reader
)
error
{
switch
{
switch
{
case
len
(
mounts
)
==
1
&&
mounts
[
0
]
.
Type
==
"overlay"
:
case
len
(
mounts
)
==
1
&&
mounts
[
0
]
.
Type
==
"overlay"
:
// OverlayConvertWhiteout (mknod c 0 0) doesn't work in userns.
// https://github.com/containerd/containerd/issues/3762
if
system
.
RunningInUserNS
()
{
break
}
path
,
parents
,
err
:=
getOverlayPath
(
mounts
[
0
]
.
Options
)
path
,
parents
,
err
:=
getOverlayPath
(
mounts
[
0
]
.
Options
)
if
err
!=
nil
{
if
err
!=
nil
{
if
errdefs
.
IsInvalidArgument
(
err
)
{
if
errdefs
.
IsInvalidArgument
(
err
)
{
...
...
vendor/modules.txt
View file @
8bb8e38f
...
@@ -151,7 +151,7 @@ github.com/container-storage-interface/spec/lib/go/csi
...
@@ -151,7 +151,7 @@ github.com/container-storage-interface/spec/lib/go/csi
github.com/containerd/cgroups
github.com/containerd/cgroups
# github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1 => github.com/containerd/console v0.0.0-20181022165439-0650fd9eeb50
# github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1 => github.com/containerd/console v0.0.0-20181022165439-0650fd9eeb50
github.com/containerd/console
github.com/containerd/console
# github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69 => github.com/rancher/containerd v1.3.0-k3s.
2
# github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69 => github.com/rancher/containerd v1.3.0-k3s.
4
github.com/containerd/containerd
github.com/containerd/containerd
github.com/containerd/containerd/api/events
github.com/containerd/containerd/api/events
github.com/containerd/containerd/api/services/containers/v1
github.com/containerd/containerd/api/services/containers/v1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment