# README
ksctl
A Kubernetes CLI which can manage Kubernetes cluster among different cloud providers

Project Scope
Many cloud providers offer their flavor of Kubernetes. Each provider has its unique CLI tool which is used to create and manage clusters on that particular cloud. When working in a multi-cloud environment, it can get difficult to create and manage so many clusters using CLI from each cloud provider. ksctl is a single CLI tool that can interact with a multitude of cloud providers, making it easy for you to manage multi-cloud clusters, with just a single CLI tool. Currently, we support Civo and Local clusters.
Demo Screenshot
Prerequisites
- Go (if building from source)
- Administrative permission
- Docker (if going to use Local provider)
- Go version >1.19 for build process
Supported Platforms
Platform | Status |
---|---|
Linux | :heavy_check_mark: |
macOS | :heavy_check_mark: |
Windows | :heavy_check_mark: |
Single command install
Linux and MacOS
bash <(curl -s https://raw.githubusercontent.com/kubesimplify/ksctl/main/install.sh)
Windows
iwr -useb https://raw.githubusercontent.com/kubesimplify/ksctl/main/install.ps1 | iex
Uninstall?
Linux & MacOs
bash <(curl -s https://raw.githubusercontent.com/kubesimplify/ksctl/main/uninstall.sh)
Windows
iwr -useb https://raw.githubusercontent.com/kubesimplify/ksctl/main/uninstall.ps1 | iex
Build from src
Linux
Install
make install_linux
macOS
Install
# macOS on M1
make install_macos
# macOS on INTEL
make install_macos_intel
Uninstall
make uninstall
Windows
Install
./builder.ps1
Uninstall
./uninstall.ps1
Usage
Please refer to the usage guide to know how you can use ksctl
RoadMap
Legends
DONE -> GREEN
NOT STARTED -> RED
NO PLANS -> BLACK
BACKLOG -> BLUE
flowchart LR;
classDef green color:#022e1f,fill:#00f500;
classDef red color:#022e1f,fill:#f11111;
classDef white color:#022e1f,fill:#fff;
classDef black color:#fff,fill:#000;
classDef blue color:#fff,fill:#00f;
XX[CLI]:::white--providers-->web{API};
web:::white--CIVO-->civo{Types};
civo:::green--managed-->civom[Create & Delete]:::green;
civo--HA-->civoha[Create & Delete]:::green;
web--LOCAL-->local{Types};
local:::green--managed-->localm[Create & Delete]:::green;
local--HA-->localha[Create & Delete]:::black;
web--AWS-->aws{Types};
aws:::blue--managed-->awsm[Create & Delete]:::red;
aws--HA-->awsha[Create & Delete]:::red;
web--AZURE-->az{Types};
az:::green--managed-->azsm[Create & Delete]:::green;
az--HA-->azha[Create & Delete]:::green;
Contribution Guidelines
Please refer to our contribution guide if you wish to contribute to the project :smile: