This project is mirrored from https://gitee.com/mirrors/Koordinator.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 06 Jun, 2022 2 commits
-
-
dependabot[bot] authored
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 20.10.2+incompatible to 20.10.16+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Changelog](https://github.com/moby/moby/blob/master/CHANGELOG.md) - [Commits](https://github.com/docker/docker/compare/v20.10.2...v20.10.16 ) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com>
-
Frame authored
Signed-off-by:
saintube <saintube@foxmail.com>
-
- 31 May, 2022 8 commits
-
-
Joseph authored
Signed-off-by:
Joseph <joseph.t.lee@outlook.com>
-
honpey authored
Signed-off-by:
honpey <honpey@gmail.com>
-
Yue Zhang authored
Signed-off-by:
Yue Zhang <huaihuan.zy@alibaba-inc.com>
-
Fansong Zeng authored
Signed-off-by:
Fansong Zeng <fanster.z@gmail.com>
-
honpey authored
Signed-off-by:
honpey <honpey@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Fansong Zeng authored
* add more tests Signed-off-by:
Fansong Zeng <fanster.z@gmail.com> * add more tests fro nodemetric&noderesource Signed-off-by:
Fansong Zeng <fanster.z@gmail.com>
-
- 30 May, 2022 3 commits
-
-
zwzhang authored
Signed-off-by:
zwzhang0107 <zuoweizhang@outlook.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
honpey authored
Signed-off-by:
honpey <honpey@gmail.com>
-
- 27 May, 2022 5 commits
-
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Fansong Zeng authored
Signed-off-by:
Fansong Zeng <fanster.z@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
- 26 May, 2022 3 commits
-
-
Joseph authored
Signed-off-by:
Joseph <joseph.t.lee@outlook.com>
-
Joseph authored
The scheduling plugin filters abnormal nodes and scores them according to resource usage. The plugin extends the Filter/Score/Reserve/Unreserve extension points defined in the Kubernetes scheduling framework. FYI: docs/proposals/scheduling/20220510-load-aware-scheduling.md Fix #95 Signed-off-by:
Tao Li <joseph.t.lee@outlook.com>
-
honpey authored
Signed-off-by:
honpey <honpey@gmail.com>
-
- 25 May, 2022 2 commits
-
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
honpey authored
1. set metaManager as inner class inside store package. other package call store.WritePodSandboxInfo directly instead of getting a new Metamanager first. 2. resource-executor adapts for the new structed PodSandboxInfo/ContianerInfo Signed-off-by:
honpey <honpey@gmail.com>
-
- 24 May, 2022 6 commits
-
-
honpey authored
for kubelet, when --image-service-endpoint is not set, kubelet would use the runtime socket as the image-service endpoint. under kubelet using runtime-manager as remote runtime and image-service not configured scenario : kubelet xx --container-runtime-endpoint=/var/run/runtime-manager/runtimemanager.sock runtime-manager should implement image service proxy, otherwise there would be image related errors as no image-service exists. runtime-manager just forwards image request to backend containerd tranparently. Signed-off-by:
honpey <honpey@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Fansong Zeng authored
* 1. fix build errors when install gnu commands in MacOS 2. add a script to fix license-header Signed-off-by:
Fansong Zeng <fanster.z@gmail.com> * use perl instead of sed for compatibility Signed-off-by:
Fansong Zeng <fanster.z@gmail.com> * fix license header Signed-off-by:
Fansong Zeng <fanster.z@gmail.com>
-
honpey authored
Signed-off-by:
pengyang.hpy <honpey@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
- 23 May, 2022 3 commits
-
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Frame authored
Signed-off-by:
saintube <saintube@foxmail.com>
-
zwzhang authored
Signed-off-by:
zwzhang0107 <zuoweizhang@outlook.com>
-
- 20 May, 2022 2 commits
-
-
Joseph authored
NodeMetricCollectPolicy is used to configure the aggregation period and reporting period. NodeMetric Controller will synchronize the configuration to NodeMetric from the slo-controller-config configuration. Signed-off-by:
Tao Li <joseph.t.lee@outlook.com>
-
Frame authored
Signed-off-by:
saintube <saintube@foxmail.com>
-
- 19 May, 2022 2 commits
-
-
Joseph authored
Signed-off-by:
Tao Li <joseph.t.lee@outlook.com>
-
Eng Zer Jun authored
* test: use `T.TempDir` to create temporary test directory This commit replaces `ioutil.TempDir` with `t.TempDir` in tests. The directory created by `t.TempDir` is automatically removed when the test and all its subtests complete. Prior to this commit, temporary directory created using `ioutil.TempDir` needs to be removed manually by calling `os.RemoveAll`, which is omitted in some tests. The error handling boilerplate e.g. defer func() { if err := os.RemoveAll(dir); err != nil { t.Fatal(err) } } is also tedious, but `t.TempDir` handles this for us nicely. Reference: https://pkg.go.dev/testing#T.TempDir Signed-off-by:
Eng Zer Jun <engzerjun@gmail.com> * test: remove (*FileTestUtil).Cleanup() NewFileTestUtil now uses t.TempDir() to create temporary directory so manual cleanup is no longer necessary. Signed-off-by:
Eng Zer Jun <engzerjun@gmail.com>
-
- 17 May, 2022 4 commits
-
-
Joseph authored
Signed-off-by:
Tao Li <joseph.t.lee@outlook.com>
-
zwzhang authored
Signed-off-by:
zwzhang0107 <zuoweizhang@outlook.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-
Jason Liu authored
Signed-off-by:
Jason Liu <jasonliu747@gmail.com>
-