Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. Learn more →
Top 23 Go Kubernete Projects
-
I have successfully made a PR here: feat(tools): support incremental enforcement of backticks in check-missing-backticks in field_name_docs_check.go
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
Let's review for example Traefik's dependency list: https://github.com/traefik/traefik/blob/master/go.mod
1. Heavy dependency on Github.
2. Many packages are referencing a git commit instead of a version.
3. Stuff like ambiguous imports because apparently nothing enforces proper go.mod files?
-
minio
MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license.
Project mention: We Built Another Object Storage (and Why It's Different) | news.ycombinator.com | 2025-12-13 -
etcd (key-value store)
-
LocalAI
:robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Drop-in replacement for OpenAI, running on consumer-grade hardware. No GPU required. Runs gguf, transformers, diffusers and many more. Features: Generate Text, MCP, Audio, Video, Images, Voice Cloning, Distributed, P2P and decentralized inference
-
- Project mention: K9s Installation Script for Amazon Linux / RHEL-Based Systems- | dev.to | 2025-12-12
#!/bin/bash # Update packages and install necessary dependencies sudo yum update -y sudo yum install -y wget tar # Fetch the latest K9s version K9S_VERSION=$(curl -s https://api.github.com/repos/derailed/k9s/releases/latest | grep tag_name | cut -d '"' -f 4) # Download the latest K9s release wget https://github.com/derailed/k9s/releases/download/${K9S_VERSION}/k9s_Linux_amd64.tar.gz # Check if the download was successful if [ $? -ne 0 ]; then echo "Failed to download K9s. Please check the version number and URL." exit 1 fi # Extract the tarball and move the binary to /usr/local/bin tar -xzf k9s_Linux_amd64.tar.gz sudo mv k9s /usr/local/bin/ # Clean up rm k9s_Linux_amd64.tar.gz # Verify installation k9s version
-
Stream
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
- Project mention: Reinventing Kubernetes in 2025: a post-mortem of my “simple” stack | dev.to | 2025-11-04
K3s lightweight Kubernetes for sane people.
-
curl -LO https://github.com/kubernetes/minikube/releases/latest/download/minikube-linux-amd64 sudo install minikube-linux-amd64 /usr/local/bin/minikube && rm minikube-linux-amd64 minikube version
-
trivy
Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more
# Install Trivy wget https://github.com/aquasecurity/trivy/releases/download/v0.45.0/trivy_0.45.0_Linux-64bit.tar.gz tar -xzf trivy_0.45.0_Linux-64bit.tar.gz # Scan image trivy image --severity HIGH,CRITICAL \ --format json \ --output trivy-results.json \ 123456789.dkr.ecr.us-east-1.amazonaws.com/payment-app:latest # Fail build on critical findings trivy image --exit-code 1 --severity CRITICAL \ 123456789.dkr.ecr.us-east-1.amazonaws.com/payment-app:latest
-
Currently, the only supported way to use Aspire on Windows requires either Podman or Docker Desktop to be installed. If, for whatever reason, you can't use either of these 2 options, there is another way to connect .NET Aspire directly to Docker running on WSL. But be warned - setting up this option isn't simple, isn't supported, and has some limitations. If you need something that is simple and supported, use Podman or Docker Desktop.
-
consul
Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
Consul, HashiCorp's distributed system tool, isn't just a one-trick pony for service discovery—it's a Swiss Army knife that also handles configuration management and network segmentation.
-
Helm's first major release in six years, v4, is now available. In this article, I'll explore the key changes: switching from 3-Way Merge to Server-Side Apply, support for WASM plugins, improved resource readiness tracking, content-based chart caching, and more.
-
seaweedfs
SeaweedFS is a fast distributed storage system for blobs, objects, files, and data lake, for billions of files! Blob store has O(1) disk seek, cloud tiering. Filer supports Cloud Drive, xDC replication, Kubernetes, POSIX FUSE mount, S3 API, S3 Gateway, Hadoop, WebDAV, encryption, Erasure Coding. Enterprise version is at seaweedfs.com.
-
Depending on what other (additional) features you're willing to accept, the GoHarbor[0] registry supports pull-through as well as mirroring and other features, it's a nice registry that also supports other OCI stuff like Helm charts, and does vulnerability scanning with "Interrogation Services" like Trivy.
I've been using it at home and work for a few years now, might be a bit overkill if you just want a simple registry, but is a really nice tool for anyone who can benefit from the other features.
[0] https://goharbor.io/
-
- Project mention: Why Serverless Architecture Might Be the Future (But Not for Everyone) 🚀 | dev.to | 2025-02-27
Here’s a GitHub repo for an open-source serverless framework, if you want to experiment without full cloud lock-in.
-
I understand the point you're really making. FWIW, I run Windows and Linux under Parallels and it works great. Colima is excellent, too: https://github.com/abiosoft/colima
-
dapr
Dapr is a portable runtime for building distributed applications across cloud and edge, combining event-driven architecture with workflow orchestration.
Since I first laid eyes and hands on Dapr when it was created in 2019, I have been fascinated by the potential of building distributed applications with it. The Dapr team has been working hard to make it easier to build microservices and distributed systems ever since. Workflows had been added with release 1.15 and AI agent support started showing up in spring 2025. When I learned about Dapr workflows and agents on this episode just recently, I wanted to explore how Dapr can be used to create agentic workflows.
- Project mention: Rancher: O “Canivete Suíço” do Kubernetes que Ainda Vale Muito em 2025 | dev.to | 2025-11-17
Link oficial: https://rancher.com Repositório: https://github.com/rancher/rancher Comunidade BR muito ativa no Telegram e Discord.
-
This is different from having Cursor write Terraform or Pulumi. Those tools let you define infrastructure explicitly, which means Cursor would need to generate proper Terraform configurations, understand AWS resource dependencies, and manage state correctly. AI-generated infrastructure code risks hallucinations that create security vulnerabilities, resource misconfigurations, and version conflicts - meaning you need to carefully review thousands of lines of generated IaC before deploying.
-
Cilium: An open-source, cloud-native networking, security, and observability solution for Kubernetes that leverages eBPF technology to provide high-performance, identity-aware network policies and scalable pod connectivity (Reference: Cilium).
- Project mention: Managing Multi-Cluster Deployments with ArgoCD: Complete Setup Guide for Kubernetes | dev.to | 2025-12-19
ArgoCD Official Documentation
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
Go Kubernetes discussion
Go Kubernetes related posts
-
Broadcom Changing Licensing to BSL
-
Dives into Kubernetes contribution in Week 50, 2025
-
Managing Multi-Cluster Deployments with ArgoCD: Complete Setup Guide for Kubernetes
-
KubeVirt to run VMs in your K8s cluster
-
AI Data Storage: Challenges, Capabilities, and Comparative Analysis
-
16 hands-on exercises to prepare for the AWS Certified CloudOps Engineer - Associate certification exam
-
Contributing to Open Source: Why It Matters and How to Start
- A note from our sponsor - Stream getstream.io | 21 Dec 2025
Index
What are some of the best open-source Kubernete projects in Go? This list will help you:
| # | Project | Stars |
|---|---|---|
| 1 | kubernetes | 119,331 |
| 2 | traefik | 60,577 |
| 3 | minio | 59,308 |
| 4 | etcd | 51,010 |
| 5 | LocalAI | 40,200 |
| 6 | istio | 37,716 |
| 7 | k9s | 32,191 |
| 8 | k3s | 31,581 |
| 9 | minikube | 31,260 |
| 10 | trivy | 30,472 |
| 11 | podman | 30,021 |
| 12 | consul | 29,608 |
| 13 | helm | 29,200 |
| 14 | seaweedfs | 28,970 |
| 15 | Harbor | 27,142 |
| 16 | authelia | 26,104 |
| 17 | OpenFaaS | 26,012 |
| 18 | colima | 25,930 |
| 19 | dapr | 25,363 |
| 20 | rancher | 24,968 |
| 21 | Pulumi | 24,354 |
| 22 | cilium | 23,097 |
| 23 | argo-cd | 21,528 |