A Kubernetes CLI which can manage Kubernetes cluster among different cloud providers
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.
- Go (if building from source)
- Administrative permission
- Docker (if going to use Local provider)
- Go version >1.19 for build process
Platform | Status |
---|---|
Linux | ✔️ |
macOS | ✔️ |
Windows | ✔️ |
bash <(curl -s https://raw.githubusercontent.com/kubesimplify/ksctl/main/install.sh)
iwr -useb https://raw.githubusercontent.com/kubesimplify/ksctl/main/install.ps1 | iex
bash <(curl -s https://raw.githubusercontent.com/kubesimplify/ksctl/main/uninstall.sh)
iwr -useb https://raw.githubusercontent.com/kubesimplify/ksctl/main/uninstall.ps1 | iex
make install_linux
# macOS on M1
make install_macos
# macOS on INTEL
make install_macos_intel
make uninstall
./builder.ps1
./uninstall.ps1
Please refer to the usage guide to know how you can use ksctl
7C3EDONE -> 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;
Please refer to our contribution guide if you wish to contribute to the project 😄