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
40f0deec
Commit
40f0deec
authored
Jan 24, 2019
by
Darren Shepherd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update vendor
parent
483f7187
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
120 additions
and
120 deletions
+120
-120
trash.lock
trash.lock
+110
-110
vendor.conf
vendor.conf
+1
-1
sqlite.go
...com/ibuildthecloud/kvsql/clientv3/driver/sqlite/sqlite.go
+1
-1
base.go
vendor/k8s.io/client-go/pkg/version/base.go
+3
-3
deps.sh
vendor/k8s.io/kubernetes/deps.sh
+1
-1
base.go
vendor/k8s.io/kubernetes/pkg/version/base.go
+3
-3
vendor.conf
vendor/k8s.io/kubernetes/vendor.conf
+1
-1
No files found.
trash.lock
View file @
40f0deec
This diff is collapsed.
Click to expand it.
vendor.conf
View file @
40f0deec
...
@@ -9,7 +9,7 @@ package=github.com/opencontainers/runc/libcontainer/nsenter
...
@@ -9,7 +9,7 @@ package=github.com/opencontainers/runc/libcontainer/nsenter
package
=
github
.
com
/
opencontainers
/
runc
/
libcontainer
/
specconv
package
=
github
.
com
/
opencontainers
/
runc
/
libcontainer
/
specconv
package
=
github
.
com
/
opencontainers
/
runc
/
contrib
/
cmd
/
recvtty
package
=
github
.
com
/
opencontainers
/
runc
/
contrib
/
cmd
/
recvtty
k8s
.
io
/
kubernetes
v1
.
13
.
2
-
k3s
2
https
://
github
.
com
/
ibuildthecloud
/
k3s
.
git
transitive
=
true
,
staging
=
true
k8s
.
io
/
kubernetes
v1
.
13
.
2
-
k3s
3
https
://
github
.
com
/
ibuildthecloud
/
k3s
.
git
transitive
=
true
,
staging
=
true
github
.
com
/
rancher
/
norman
628
eb6b32906125ddd77e23f3ad3c9bdb6e93664
https
://
github
.
com
/
ibuildthecloud
/
norman
.
git
github
.
com
/
rancher
/
norman
628
eb6b32906125ddd77e23f3ad3c9bdb6e93664
https
://
github
.
com
/
ibuildthecloud
/
norman
.
git
github
.
com
/
coreos
/
flannel
3
d7cff78e2ca4cade87c6c7d44adf27fe3de2709
https
://
github
.
com
/
ibuildthecloud
/
flannel
.
git
github
.
com
/
coreos
/
flannel
3
d7cff78e2ca4cade87c6c7d44adf27fe3de2709
https
://
github
.
com
/
ibuildthecloud
/
flannel
.
git
...
...
vendor/github.com/ibuildthecloud/kvsql/clientv3/driver/sqlite/sqlite.go
View file @
40f0deec
...
@@ -64,7 +64,7 @@ func NewSQLite() *driver.Generic {
...
@@ -64,7 +64,7 @@ func NewSQLite() *driver.Generic {
func
Open
(
dataSourceName
string
)
(
*
sql
.
DB
,
error
)
{
func
Open
(
dataSourceName
string
)
(
*
sql
.
DB
,
error
)
{
if
dataSourceName
==
""
{
if
dataSourceName
==
""
{
os
.
MkdirAll
(
"./db"
,
700
)
os
.
MkdirAll
(
"./db"
,
0
700
)
dataSourceName
=
"./db/state.db?_journal=WAL&cache=shared"
dataSourceName
=
"./db/state.db?_journal=WAL&cache=shared"
}
}
db
,
err
:=
sql
.
Open
(
"sqlite3"
,
dataSourceName
)
db
,
err
:=
sql
.
Open
(
"sqlite3"
,
dataSourceName
)
...
...
vendor/k8s.io/client-go/pkg/version/base.go
View file @
40f0deec
...
@@ -3,8 +3,8 @@ package version
...
@@ -3,8 +3,8 @@ package version
var
(
var
(
gitMajor
=
"1"
gitMajor
=
"1"
gitMinor
=
"12"
gitMinor
=
"12"
gitVersion
=
"v1.13.2-k3s
2
"
gitVersion
=
"v1.13.2-k3s
3
"
gitCommit
=
"
149316edfe67e696f622608282a3fc4252ad92b3
"
gitCommit
=
"
2c2e61ebc2c99ee1dfb366d00e0eaa51507c2d22
"
gitTreeState
=
"clean"
gitTreeState
=
"clean"
buildDate
=
"2019-01-2
2T20:48
+00:00Z"
buildDate
=
"2019-01-2
4T16:43
+00:00Z"
)
)
vendor/k8s.io/kubernetes/deps.sh
View file @
40f0deec
...
@@ -11,7 +11,7 @@ package=k8s.io/kubernetes
...
@@ -11,7 +11,7 @@ package=k8s.io/kubernetes
package=k8s.io/kubernetes/cmd/hyperkube
package=k8s.io/kubernetes/cmd/hyperkube
$(
cat
./Godeps/Godeps.json | jq
-r
'(.Deps | .[] | "\(.ImportPath) \(.Comment) \(.Rev)\n")'
|
sed
's/null//'
|
awk
'{print $1 " " $2}'
|
grep
-Ev
'github.com/opencontainers/runc|bitbucket.org/ww/goautoneg|github.com/google/cadvisor'
|
sort
-k2
,1 |
uniq
-f1
)
$(
cat
./Godeps/Godeps.json | jq
-r
'(.Deps | .[] | "\(.ImportPath) \(.Comment) \(.Rev)\n")'
|
sed
's/null//'
|
awk
'{print $1 " " $2}'
|
grep
-Ev
'github.com/opencontainers/runc|bitbucket.org/ww/goautoneg|github.com/google/cadvisor'
|
sort
-k2
,1 |
uniq
-f1
)
bitbucket.org/ww/goautoneg a547fc61f48d567d5b4ec6f8aee5573d8efce11d https://github.com/rancher/goautoneg.git
bitbucket.org/ww/goautoneg a547fc61f48d567d5b4ec6f8aee5573d8efce11d https://github.com/rancher/goautoneg.git
github.com/ibuildthecloud/kvsql
8dfe3deb0646c4817567e4a53ed1dea41ea5668f
github.com/ibuildthecloud/kvsql
57dce9ad58ce9a47cee7fc399cb10e76047ede77
github.com/google/cadvisor 91dab6eb91496ed68acbef68b02b34b3392ca754 https://github.com/ibuildthecloud/cadvisor.git
github.com/google/cadvisor 91dab6eb91496ed68acbef68b02b34b3392ca754 https://github.com/ibuildthecloud/cadvisor.git
github.com/opencontainers/runc 96ec2177ae841256168fcf76954f7177af9446eb
github.com/opencontainers/runc 96ec2177ae841256168fcf76954f7177af9446eb
EOF
EOF
...
...
vendor/k8s.io/kubernetes/pkg/version/base.go
View file @
40f0deec
...
@@ -3,8 +3,8 @@ package version
...
@@ -3,8 +3,8 @@ package version
var
(
var
(
gitMajor
=
"1"
gitMajor
=
"1"
gitMinor
=
"12"
gitMinor
=
"12"
gitVersion
=
"v1.13.2-k3s
2
"
gitVersion
=
"v1.13.2-k3s
3
"
gitCommit
=
"
149316edfe67e696f622608282a3fc4252ad92b3
"
gitCommit
=
"
2c2e61ebc2c99ee1dfb366d00e0eaa51507c2d22
"
gitTreeState
=
"clean"
gitTreeState
=
"clean"
buildDate
=
"2019-01-2
2T20:48
+00:00Z"
buildDate
=
"2019-01-2
4T16:43
+00:00Z"
)
)
vendor/k8s.io/kubernetes/vendor.conf
View file @
40f0deec
...
@@ -205,6 +205,6 @@ k8s.io/utils 66066c83e385e385ccc3c964b44fd7dcd413d0ed
...
@@ -205,6 +205,6 @@ k8s.io/utils 66066c83e385e385ccc3c964b44fd7dcd413d0ed
sigs
.
k8s
.
io
/
yaml
v1
.
1
.
0
sigs
.
k8s
.
io
/
yaml
v1
.
1
.
0
vbom
.
ml
/
util
db5cfe13f5cc80a4990d98e2e1b0707a4d1a5394
vbom
.
ml
/
util
db5cfe13f5cc80a4990d98e2e1b0707a4d1a5394
bitbucket
.
org
/
ww
/
goautoneg
a547fc61f48d567d5b4ec6f8aee5573d8efce11d
https
://
github
.
com
/
rancher
/
goautoneg
.
git
bitbucket
.
org
/
ww
/
goautoneg
a547fc61f48d567d5b4ec6f8aee5573d8efce11d
https
://
github
.
com
/
rancher
/
goautoneg
.
git
github
.
com
/
ibuildthecloud
/
kvsql
8
dfe3deb0646c4817567e4a53ed1dea41ea5668f
github
.
com
/
ibuildthecloud
/
kvsql
57
dce9ad58ce9a47cee7fc399cb10e76047ede77
github
.
com
/
google
/
cadvisor
91
dab6eb91496ed68acbef68b02b34b3392ca754
https
://
github
.
com
/
ibuildthecloud
/
cadvisor
.
git
github
.
com
/
google
/
cadvisor
91
dab6eb91496ed68acbef68b02b34b3392ca754
https
://
github
.
com
/
ibuildthecloud
/
cadvisor
.
git
github
.
com
/
opencontainers
/
runc
96
ec2177ae841256168fcf76954f7177af9446eb
github
.
com
/
opencontainers
/
runc
96
ec2177ae841256168fcf76954f7177af9446eb
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