https://github.com/hyperspike/hyperctl
A CLI to create Hyperspike Clusters from Scratch
https://github.com/hyperspike/hyperctl
aws cilium gitops hyperspike kubeadm kubernetes kubernetes-cluster
Last synced: 5 days ago
JSON representation
A CLI to create Hyperspike Clusters from Scratch
- Host: GitHub
- URL: https://github.com/hyperspike/hyperctl
- Owner: hyperspike
- License: mit
- Created: 2020-08-10T16:26:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-09-15T15:18:43.000Z (4 months ago)
- Last Synced: 2025-09-16T08:25:07.679Z (4 months ago)
- Topics: aws, cilium, gitops, hyperspike, kubeadm, kubernetes, kubernetes-cluster
- Language: Go
- Homepage: https://hyperspike.io
- Size: 725 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
- Roadmap: ROADMAP.md
Awesome Lists containing this project
README
# Hyperctl
[](https://ci.hyperspike.io/Hyperspike/hyperctl)
[](COPYING)
Hyperctl is under heavy development, if a feature is missing come back in a few weeks.
To see a view of planned features go to the [TODO Page](TODO.md)
## About
The goal is to create a scalable, secure, bootstrapping mechanism, that reduces friction between AWS and kubernetes clusters.
Hyperctl is an initial deployment mechanism for Hyperspike Kubernetes infrastructure. While terraform, eks, [kops](https://github.com/kubernetes/kops), [cluster-api](https://cluster-api.sigs.k8s.io/) and others are decent bootstrapping mechanisms they don't fully capture bootstrapped self hosted kubernetes while maintaining a GitOps audit trail.
The Hyperspike stack includes an [Alpine](https://alpinelinux.org/) base image, with [cri-o](https://github.com/cri-o/cri-o) container daemon, with [crun](https://github.com/containers/crun) container runtime, And [cilium](https://cilium.io/) cni. Which necessitates a custom configured Linux kernel for full eBPF support. On [AWS](https://github.com/aws/amazon-vpc-cni-k8s) cilium is setup in [ENI](https://docs.cilium.io/en/v1.8/concepts/networking/ipam/eni/) mode without [kube-proxy](https://docs.cilium.io/en/v1.8/gettingstarted/kubeproxy-free/).
Hyperctl is designed to work with [Gitifold](https://github.com/hyperspike/gitifold.git) to provide fully a full Infra and Application pipeline.
## Getting Started
Get hyperctl, you can download binaries from the release page: https://github.com/hyperspike/hyperctl/releases/latest
### First Cluster
You're going to need an AWS Account and API Credentials.
export AWS_DEFAULT_REGION=us-east-2
export AWS_SECRET_ACCESS_KEY=
export AWS_ACCESS_KEY_ID=
Then create your first cluster:
hyperctl boot
In addition to creating a cluster, the create command will drop 2 files into your current directory, a SSH key and kubeconfig, these can be used to ssh to your new bastion host and use your new cluster.
### Building From Source
To build hyperctl from source you will need [Golang](https://golang.org/) and [Make.](https://www.gnu.org/software/make/)
go get -u hyperspike.io/hyperctl
cd $GOPATH/src/hyperspike.io/hyperctl
make local_install