https://github.com/openbce/kube-a2s
A bunch of scheduling policy for the accelerators of Kubneretes, e.g. GPU, IB/RoCE/NvLink, xPU.
https://github.com/openbce/kube-a2s
golang kubernetes scheduling-algorithms
Last synced: 20 days ago
JSON representation
A bunch of scheduling policy for the accelerators of Kubneretes, e.g. GPU, IB/RoCE/NvLink, xPU.
- Host: GitHub
- URL: https://github.com/openbce/kube-a2s
- Owner: openbce
- License: apache-2.0
- Created: 2025-01-17T05:55:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-23T06:36:02.000Z (about 1 year ago)
- Last Synced: 2025-04-23T07:30:49.300Z (about 1 year ago)
- Topics: golang, kubernetes, scheduling-algorithms
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kube-a2s
This is a Go project that [describe your project purpose here].
## Requirements
- Go 1.21 or higher
- Make
## Getting Started
1. Clone the repository:
```bash
git clone https://github.com/openbce/kube-a2s.git
cd kube-a2s
```
2. Build the project:
```bash
make build
```
3. Run the application:
```bash
./bin/kube-a2s
```
## Development
The project includes a Makefile with common development tasks:
- `make build`: Build the binary
- `make test`: Run unit tests
- `make coverage`: Generate test coverage report
- `make fmt`: Format code
- `make vet`: Run go vet
- `make lint`: Run golangci-lint
- `make clean`: Clean build artifacts
- `make help`: Show all available commands
## Project Structure
```
.
├── cmd/
│ └── kube-a2s/ # Application entry point
│ └── main.go
├── pkg/ # Package directory for shared code
│ └── apis/ # API type definitions
├── bin/ # Compiled binaries
├── Makefile # Build automation
├── go.mod # Go module definition
└── README.md # Project documentation
```
## License
Copyright 2024 The Kube-a2s 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.