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
9a7ff8db
Commit
9a7ff8db
authored
Apr 09, 2018
by
Pengfei Ni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add log stats for Windows containers
parent
03d97e0f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
2 deletions
+79
-2
BUILD
pkg/volume/util/fs/BUILD
+2
-1
fs_unsupported.go
pkg/volume/util/fs/fs_unsupported.go
+1
-1
fs_windows.go
pkg/volume/util/fs/fs_windows.go
+76
-0
No files found.
pkg/volume/util/fs/BUILD
View file @
9a7ff8db
...
...
@@ -34,7 +34,7 @@ go_library(
"fs_unsupported.go",
],
"@io_bazel_rules_go//go/platform:windows": [
"fs_
unsupported
.go",
"fs_
windows
.go",
],
"//conditions:default": [],
}),
...
...
@@ -74,6 +74,7 @@ go_library(
"//vendor/k8s.io/apimachinery/pkg/api/resource:go_default_library",
],
"@io_bazel_rules_go//go/platform:windows": [
"//vendor/golang.org/x/sys/windows:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/api/resource:go_default_library",
],
"//conditions:default": [],
...
...
pkg/volume/util/fs/fs_unsupported.go
View file @
9a7ff8db
// +build !linux,!darwin
// +build !linux,!darwin
,!windows
/*
Copyright 2014 The Kubernetes Authors.
...
...
pkg/volume/util/fs/fs_windows.go
0 → 100644
View file @
9a7ff8db
// +build windows
/*
Copyright 2014 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
fs
import
(
"fmt"
"syscall"
"unsafe"
"golang.org/x/sys/windows"
"k8s.io/apimachinery/pkg/api/resource"
)
var
(
modkernel32
=
windows
.
NewLazySystemDLL
(
"kernel32.dll"
)
procGetDiskFreeSpaceEx
=
modkernel32
.
NewProc
(
"GetDiskFreeSpaceExW"
)
)
// FSInfo returns (available bytes, byte capacity, byte usage, total inodes, inodes free, inode usage, error)
// for the filesystem that path resides upon.
func
FsInfo
(
path
string
)
(
int64
,
int64
,
int64
,
int64
,
int64
,
int64
,
error
)
{
var
freeBytesAvailable
,
totalNumberOfBytes
,
totalNumberOfFreeBytes
int64
var
err
error
ret
,
_
,
err
:=
syscall
.
Syscall6
(
procGetDiskFreeSpaceEx
.
Addr
(),
4
,
uintptr
(
unsafe
.
Pointer
(
syscall
.
StringToUTF16Ptr
(
path
))),
uintptr
(
unsafe
.
Pointer
(
&
freeBytesAvailable
)),
uintptr
(
unsafe
.
Pointer
(
&
totalNumberOfBytes
)),
uintptr
(
unsafe
.
Pointer
(
&
totalNumberOfFreeBytes
)),
0
,
0
,
)
if
ret
==
0
{
return
0
,
0
,
0
,
0
,
0
,
0
,
err
}
return
freeBytesAvailable
,
totalNumberOfBytes
,
totalNumberOfBytes
-
freeBytesAvailable
,
0
,
0
,
0
,
nil
}
func
Du
(
path
string
)
(
*
resource
.
Quantity
,
error
)
{
_
,
_
,
usage
,
_
,
_
,
_
,
err
:=
FsInfo
(
path
)
if
err
!=
nil
{
return
nil
,
err
}
used
,
err
:=
resource
.
ParseQuantity
(
fmt
.
Sprintf
(
"%d"
,
usage
))
if
err
!=
nil
{
return
nil
,
fmt
.
Errorf
(
"failed to parse fs usage %d due to %v"
,
usage
,
err
)
}
used
.
Format
=
resource
.
BinarySI
return
&
used
,
nil
}
// Always return zero since inodes is not supported on Windows.
func
Find
(
path
string
)
(
int64
,
error
)
{
return
0
,
nil
}
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