https://github.com/kf5i/k3ai-core
K3ai-core is the core library for the GO installer. Go installer will replace the current bash installer
https://github.com/kf5i/k3ai-core
argo artificial-intelligence continuous-integration data-science golang k3s kubeflow kubernetes-deployment machine-learning machinelearning ml pipeline
Last synced: 5 months ago
JSON representation
K3ai-core is the core library for the GO installer. Go installer will replace the current bash installer
- Host: GitHub
- URL: https://github.com/kf5i/k3ai-core
- Owner: kf5i
- License: apache-2.0
- Archived: true
- Created: 2020-10-18T10:40:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-02T09:56:53.000Z (over 4 years ago)
- Last Synced: 2024-06-20T17:38:09.111Z (almost 2 years ago)
- Topics: argo, artificial-intelligence, continuous-integration, data-science, golang, k3s, kubeflow, kubernetes-deployment, machine-learning, machinelearning, ml, pipeline
- Language: Go
- Homepage:
- Size: 22.3 MB
- Stars: 23
- Watchers: 9
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# WE RELEASED THE NEW VERSION CHECK THE NEW ORG AT: [https://github.com/k3ai](https://github.com/k3ai) AND OUR NEW WEBSITE/DOCS AT: [https://k3ai.in](https://k3ai.in)
# k3ai-core
K3ai-core is the core library for the k3ai installer.
The Go installer will replace the current bash installer.





## Install k3ai-cli(Latest Version)
```bash
#Set a variable to grab latest version
Version=$(curl -s "https://api.github.com/repos/kf5i/k3ai-core/releases/latest" | awk -F '"' '/tag_name/{print $4}' | cut -c 2-6)
# get the binaries
wget https://github.com/kf5i/k3ai-core/releases/download/v$Version/k3ai-core_${Version}_linux_amd64.tar.gz
```
## Building from source
Setup the environment using Golang v1.15.3+. A Linux, Mac OS or a WSL2 environment is recommended.
To build the project, run
```bash
make build-cli
```
To run the test suite, use
```bash
make lint
make test
```
Please feel free to open a Github issue or send a PR. Looking forward to your contribution.