Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hivenetes/k8s-bootstrapper
Bootstrapping a Production-Ready DigitalOcean Kubernetes Cluster Using Terraform and Argo CD
https://github.com/hivenetes/k8s-bootstrapper
argocd devops digitalocean digitalocean-kubernetes gitops-framework grafana hacktoberfest infrastructure-as-code k8s kubernetes loki prometheus terraform
Last synced: 26 days ago
JSON representation
Bootstrapping a Production-Ready DigitalOcean Kubernetes Cluster Using Terraform and Argo CD
- Host: GitHub
- URL: https://github.com/hivenetes/k8s-bootstrapper
- Owner: hivenetes
- License: mit
- Created: 2022-09-29T12:09:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T18:24:29.000Z (3 months ago)
- Last Synced: 2024-09-06T21:49:53.037Z (3 months ago)
- Topics: argocd, devops, digitalocean, digitalocean-kubernetes, gitops-framework, grafana, hacktoberfest, infrastructure-as-code, k8s, kubernetes, loki, prometheus, terraform
- Language: HCL
- Homepage:
- Size: 23.3 MB
- Stars: 254
- Watchers: 7
- Forks: 53
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-argo - k8s-bootstrapper
README
# Kubernetes Bootstrapper: An Extendable Framework to Set Up Production-Grade Clusters
## Introduction
"*Production-grade*" is a loaded term. What constitutes production readiness will vary according to your use case. While a Kubernetes cluster is production-ready the moment it is ready to serve traffic, there is a commonly agreed set of minimum requirements, as shown in the infographic below.
With [many cloud-native solutions](https://landscape.cncf.io/) popping up daily, it can be pretty daunting for engineers and organizations to choose the "right" tools to build their tech. Integrating them to get to **day-2 operations ready** in Kubernetes becomes all the more challenging.
## Kubernetes Bootstrapper
The [**k8s-bootstrapper**](https://github.com/hivenetes/k8s-bootstrapper) project is a customizable and extendable framework that aims to solve this problem by leveraging
- [Terraform](https://www.terraform.io/): Compose a production-ready infrastructure on DigitalOcean
- [Argo CD](https://argo-cd.readthedocs.io/en/stable/): Application configuration management and delivery using GitOpsThis project integrates popular battle-tested open-source software and solutions that provide a production-grade out-of-box Kubernetes experience.
### Target Audience
- Kubernetes adopters
- Startups/SMBs who are looking to speed up the Kubernetes adoption
- Builders and curious souls
----
## Overview
```bash
.
├── CODE_OF_CONDUCT.md
├── LICENSE
├── README.md
├── argocd # Argo CD configurations (optional)
├── bootstrap # cluster bootstrapping using Argo CD
├── docs # documents and assets
├── infrastructure # infrastructure automation using Terraform
└── observability # set up observability stack
```### Bootstrap the Kubernetes Cluster
Follow the guide in the order stated below:
1. [DigitalOcean Infrastructure Automation via Terraform](./infrastructure/terraform/README.md)
2. [Bootstrapping using Argo CD](./bootstrap/README.md)
3. [Set up Observability using Robusta](./observability/README.md)Here is the overview of the architecture that we will set up:
> **Note**:
Intended for experimentation/evaluation only.
You will be responsible for all infrastructure costs incurred by the used resources.### Tear down the Bootstrapped Cluster
Had fun trying out the *k8s-bootstrapper*? Time to say goodbye!
```bash
# Run
cd infrastructure/terraform
terraform destroy --var-file=bootstrapper.tfvars --auto-approve
# Bye Bye!
```----
## Demos
*k8s-bootstrapper* in action
- [Running Mastodon on Kubernetes](https://github.com/digitalocean/mastodon-on-kubernetes)
- [DOKS Application Log Monitoring and Retention using Grafana Loki and DigitalOcean Spaces](https://github.com/hivenetes/k8s-bootstrapper/tree/loki-spaces-demo/demo/loki-spaces)- [tiffanyfay/lets-generate-art](https://github.com/tiffanyfay/lets-generate-art)
## Media
- [YouTube: Project Overview](https://www.youtube.com/watch?v=p_4Qj3z6EDQ)
- [Blog: Build your K8s framework](https://thecloudodyssey.com/build-your-own-kubernetes-framework)
- [Workshop: DigitalOcean Deploy Conference 2022](https://youtu.be/PfoB2e95VjQ)
- [Featured in akuity/awesome-argo](https://github.com/akuity/awesome-argo#ecosystem-projects)- [Featured in VMware Explore/ SpringOne](https://x.com/tiffanyfayj/status/1828777854995505492)
### Shout-out
This project takes inspiration from the fantastic work done by [Alex Jones](https://twitter.com/AlexJonesax) of [Cloud Native Skunkworks.](https://www.cloudnativeskunkworks.io/)