forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes#62266 from feiskyer/win-log-stats
Automatic merge from submit-queue (batch tested with PRs 62266, 64351, 64366, 64235, 64560). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Add log and fs stats for Windows containers **What this PR does / why we need it**: Add log and fs stats for Windows containers. Without this, kubelet will report errors continuously: ``` Unable to fetch container log stats for path \var\log\pods\2a70ed65-37ae-11e8-8730-000d3a14b1a0\echo: Du not supported for this build. ``` **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes kubernetes#60180 kubernetes#62047 **Special notes for your reviewer**: **Release note**: ```release-note Add log and fs stats for Windows containers ```
- Loading branch information
Showing
9 changed files
with
158 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// +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 | ||
} | ||
|
||
// DiskUsage gets disk usage of specified path. | ||
func DiskUsage(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 | ||
} |