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
5b9a6d47
Commit
5b9a6d47
authored
Mar 31, 2015
by
Dawn Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
publish node components version information
parent
3e0cdff9
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
62 additions
and
6 deletions
+62
-6
cadvisor_fake.go
pkg/kubelet/cadvisor/cadvisor_fake.go
+4
-0
cadvisor_linux.go
pkg/kubelet/cadvisor/cadvisor_linux.go
+4
-0
cadvisor_mock.go
pkg/kubelet/cadvisor/cadvisor_mock.go
+5
-0
cadvisor_unsupported.go
pkg/kubelet/cadvisor/cadvisor_unsupported.go
+4
-0
types.go
pkg/kubelet/cadvisor/types.go
+2
-0
kubelet.go
pkg/kubelet/kubelet.go
+14
-0
kubelet_test.go
pkg/kubelet/kubelet_test.go
+29
-6
No files found.
pkg/kubelet/cadvisor/cadvisor_fake.go
View file @
5b9a6d47
...
...
@@ -39,6 +39,10 @@ func (c *Fake) MachineInfo() (*cadvisorApi.MachineInfo, error) {
return
new
(
cadvisorApi
.
MachineInfo
),
nil
}
func
(
c
*
Fake
)
VersionInfo
()
(
*
cadvisorApi
.
VersionInfo
,
error
)
{
return
new
(
cadvisorApi
.
VersionInfo
),
nil
}
func
(
c
*
Fake
)
DockerImagesFsInfo
()
(
cadvisorApiV2
.
FsInfo
,
error
)
{
return
cadvisorApiV2
.
FsInfo
{},
nil
}
pkg/kubelet/cadvisor/cadvisor_linux.go
View file @
5b9a6d47
...
...
@@ -109,6 +109,10 @@ func (self *cadvisorClient) ContainerInfo(name string, req *cadvisorApi.Containe
return
self
.
GetContainerInfo
(
name
,
req
)
}
func
(
self
*
cadvisorClient
)
VersionInfo
()
(
*
cadvisorApi
.
VersionInfo
,
error
)
{
return
self
.
GetVersionInfo
()
}
func
(
self
*
cadvisorClient
)
MachineInfo
()
(
*
cadvisorApi
.
MachineInfo
,
error
)
{
return
self
.
GetMachineInfo
()
}
...
...
pkg/kubelet/cadvisor/cadvisor_mock.go
View file @
5b9a6d47
...
...
@@ -46,6 +46,11 @@ func (c *Mock) MachineInfo() (*cadvisorApi.MachineInfo, error) {
return
args
.
Get
(
0
)
.
(
*
cadvisorApi
.
MachineInfo
),
args
.
Error
(
1
)
}
func
(
c
*
Mock
)
VersionInfo
()
(
*
cadvisorApi
.
VersionInfo
,
error
)
{
args
:=
c
.
Called
()
return
args
.
Get
(
0
)
.
(
*
cadvisorApi
.
VersionInfo
),
args
.
Error
(
1
)
}
func
(
c
*
Mock
)
DockerImagesFsInfo
()
(
cadvisorApiV2
.
FsInfo
,
error
)
{
args
:=
c
.
Called
()
return
args
.
Get
(
0
)
.
(
cadvisorApiV2
.
FsInfo
),
args
.
Error
(
1
)
...
...
pkg/kubelet/cadvisor/cadvisor_unsupported.go
View file @
5b9a6d47
...
...
@@ -48,6 +48,10 @@ func (self *cadvisorUnsupported) MachineInfo() (*cadvisorApi.MachineInfo, error)
return
nil
,
unsupportedErr
}
func
(
self
*
cadvisorUnsupported
)
VersionInfo
()
(
*
cadvisorApi
.
VersionInfo
,
error
)
{
return
nil
,
unsupportedErr
}
func
(
self
*
cadvisorUnsupported
)
DockerImagesFsInfo
()
(
cadvisorApiV2
.
FsInfo
,
error
)
{
return
cadvisorApiV2
.
FsInfo
{},
unsupportedErr
}
pkg/kubelet/cadvisor/types.go
View file @
5b9a6d47
...
...
@@ -27,6 +27,8 @@ type Interface interface {
ContainerInfo
(
name
string
,
req
*
cadvisorApi
.
ContainerInfoRequest
)
(
*
cadvisorApi
.
ContainerInfo
,
error
)
MachineInfo
()
(
*
cadvisorApi
.
MachineInfo
,
error
)
VersionInfo
()
(
*
cadvisorApi
.
VersionInfo
,
error
)
// Returns usage information about the filesystem holding Docker images.
DockerImagesFsInfo
()
(
cadvisorApiV2
.
FsInfo
,
error
)
}
pkg/kubelet/kubelet.go
View file @
5b9a6d47
...
...
@@ -51,6 +51,7 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
utilErrors
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/errors"
"github.com/GoogleCloudPlatform/kubernetes/pkg/version"
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
"github.com/GoogleCloudPlatform/kubernetes/pkg/watch"
"github.com/fsouza/go-dockerclient"
...
...
@@ -1769,6 +1770,19 @@ func (kl *Kubelet) tryUpdateNodeStatus() error {
node
.
Status
.
NodeInfo
.
BootID
=
info
.
BootID
}
verinfo
,
err
:=
kl
.
cadvisor
.
VersionInfo
()
if
err
!=
nil
{
glog
.
Error
(
"error getting version info: %v"
,
err
)
}
else
{
node
.
Status
.
NodeInfo
.
KernelVersion
=
verinfo
.
KernelVersion
node
.
Status
.
NodeInfo
.
OsImage
=
verinfo
.
ContainerOsVersion
// TODO: Determine the runtime is docker or rocket
node
.
Status
.
NodeInfo
.
ContainerRuntimeVersion
=
"docker://"
+
verinfo
.
DockerVersion
node
.
Status
.
NodeInfo
.
KubeletVersion
=
version
.
Get
()
.
String
()
// TODO: kube-proxy might be different version from kubelet in the future
node
.
Status
.
NodeInfo
.
KubeProxyVersion
=
version
.
Get
()
.
String
()
}
currentTime
:=
util
.
Now
()
newCondition
:=
api
.
NodeCondition
{
Type
:
api
.
NodeReady
,
...
...
pkg/kubelet/kubelet_test.go
View file @
5b9a6d47
...
...
@@ -47,6 +47,7 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/network"
"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/version"
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
_
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume/host_path"
"github.com/fsouza/go-dockerclient"
...
...
@@ -3062,6 +3063,12 @@ func TestUpdateNewNodeStatus(t *testing.T) {
MemoryCapacity
:
1024
,
}
mockCadvisor
.
On
(
"MachineInfo"
)
.
Return
(
machineInfo
,
nil
)
versionInfo
:=
&
cadvisorApi
.
VersionInfo
{
KernelVersion
:
"3.16.0-0.bpo.4-amd64"
,
ContainerOsVersion
:
"Debian GNU/Linux 7 (wheezy)"
,
DockerVersion
:
"1.5.0"
,
}
mockCadvisor
.
On
(
"VersionInfo"
)
.
Return
(
versionInfo
,
nil
)
expectedNode
:=
&
api
.
Node
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"testnode"
},
Spec
:
api
.
NodeSpec
{},
...
...
@@ -3076,9 +3083,14 @@ func TestUpdateNewNodeStatus(t *testing.T) {
},
},
NodeInfo
:
api
.
NodeSystemInfo
{
MachineID
:
"123"
,
SystemUUID
:
"abc"
,
BootID
:
"1b3"
,
MachineID
:
"123"
,
SystemUUID
:
"abc"
,
BootID
:
"1b3"
,
KernelVersion
:
"3.16.0-0.bpo.4-amd64"
,
OsImage
:
"Debian GNU/Linux 7 (wheezy)"
,
ContainerRuntimeVersion
:
"docker://1.5.0"
,
KubeletVersion
:
version
.
Get
()
.
String
(),
KubeProxyVersion
:
version
.
Get
()
.
String
(),
},
Capacity
:
api
.
ResourceList
{
api
.
ResourceCPU
:
*
resource
.
NewMilliQuantity
(
2000
,
resource
.
DecimalSI
),
...
...
@@ -3144,6 +3156,12 @@ func TestUpdateExistingNodeStatus(t *testing.T) {
MemoryCapacity
:
1024
,
}
mockCadvisor
.
On
(
"MachineInfo"
)
.
Return
(
machineInfo
,
nil
)
versionInfo
:=
&
cadvisorApi
.
VersionInfo
{
KernelVersion
:
"3.16.0-0.bpo.4-amd64"
,
ContainerOsVersion
:
"Debian GNU/Linux 7 (wheezy)"
,
DockerVersion
:
"1.5.0"
,
}
mockCadvisor
.
On
(
"VersionInfo"
)
.
Return
(
versionInfo
,
nil
)
expectedNode
:=
&
api
.
Node
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"testnode"
},
Spec
:
api
.
NodeSpec
{},
...
...
@@ -3158,9 +3176,14 @@ func TestUpdateExistingNodeStatus(t *testing.T) {
},
},
NodeInfo
:
api
.
NodeSystemInfo
{
MachineID
:
"123"
,
SystemUUID
:
"abc"
,
BootID
:
"1b3"
,
MachineID
:
"123"
,
SystemUUID
:
"abc"
,
BootID
:
"1b3"
,
KernelVersion
:
"3.16.0-0.bpo.4-amd64"
,
OsImage
:
"Debian GNU/Linux 7 (wheezy)"
,
ContainerRuntimeVersion
:
"docker://1.5.0"
,
KubeletVersion
:
version
.
Get
()
.
String
(),
KubeProxyVersion
:
version
.
Get
()
.
String
(),
},
Capacity
:
api
.
ResourceList
{
api
.
ResourceCPU
:
*
resource
.
NewMilliQuantity
(
2000
,
resource
.
DecimalSI
),
...
...
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