What is this project about?

Scope

The main goal of this project is to create a kubernetes cluster at home using ARM/x86 bare metal nodes (Raspberry Pis and low cost refurbished mini PCs) and to automate its deployment and configuration applying IaC (infrastructure as a code) and GitOps methodologies with tools like Ansible, cloud-init and Argo CD.

The project scope includes the automation of the deployment and configuration of a lightweight Kubernetes flavor based on K3S, and deploy cluster basic services such as:

Also services needed to learn about microservices architectures are include as part of the scope

  • Service mesh architecture, Linkerd
  • API security using Oauth2.0 and OpenId Connect, using IAM solution, Keycloak
  • Streaming platform, Kafka

Design Principles

  • Use hybrid x86/ARM bare metal nodes, combining in the same cluster Raspberry PI nodes (ARM) and x86 mini PCs (HP Elitedesk 800 G3).
  • Use lightweight Kubernetes distribution (K3S). Kubernetes distribution with a smaller memory footprint which is ideal for running on Raspberry PIs
  • Use distributed storage block technology, instead of centralized NFS system, for pod persistent storage. Kubernetes block distributed storage solutions, like Rook/Ceph or Longhorn, in their latest versions have included ARM 64 bits support.
  • Use opensource projects under the CNCF: Cloud Native Computing Foundation umbrella
  • Use latest versions of each opensource project to be able to test the latest Kubernetes capabilities.
  • Automate deployment of cluster using IaC (infrastructure as a code) and GitOps methodologies with tools like:
    • cloud-init to automate the initial OS installation of the cluster nodes.
    • Ansible for automating the configuration of the cluster nodes, installation of kubernetes and external services, and triggering cluster bootstrap (ArgoCD bootstrap).
    • Argo CD to automatically provision Kubernetes applications from git repository.

Technology Stack

The following picture shows the set of opensource solutions used for building this cluster:

Cluster-Icons

Name Description
ansible logo Ansible Automate OS configuration, external services installation and k3s installation and bootstrapping
argocd logo ArgoCD GitOps tool for deploying applications to Kubernetes
cloud-init logo Cloud-init Automate OS initial installation
ubuntu logo Ubuntu Cluster nodes OS
k3s logo K3S Lightweight distribution of Kubernetes
containerd logo containerd Container runtime integrated with K3S
flannel logo Flannel Kubernetes Networking (CNI) integrated with K3S
coredns logo CoreDNS Kubernetes DNS
haproxy logo HA Proxy Kubernetes API Load-balancer
metallb logo Metal LB Load-balancer implementation for bare metal Kubernetes clusters
nginx logo Ingress NGINX Kubernetes Ingress Controller
traefik logo Traefik Kubernetes Ingress Controller (alternative)
linkerd logo Linkerd Kubernetes Service Mesh
longhorn logo Longhorn Kubernetes distributed block storage
minio logo Minio S3 Object Storage solution
cert-manager logo Cert-manager TLS Certificates management
vault logo Hashicorp Vault Secrets Management solution
external-secrets logo External Secrets Operator Sync Kubernetes Secrets from Hashicorp Vault
keycloak logo Keycloak Identity Access Management
oauth2-proxy logo OAuth2.0 Proxy OAuth2.0 Proxy
velero logo Velero Kubernetes Backup and Restore solution
restic logo Restic OS Backup and Restore solution
prometheus logo Prometheus Metrics monitoring and alerting
fluentd logo Fluentd Logs forwarding and distribution
fluentbit logo Fluentbit Logs collection
loki logo Loki Logs aggregation
elasticsearch logo Elasticsearch Logs analytics
kibana logo Kibana Logs analytics Dashboards
tempo logo Tempo Distributed tracing monitoring
grafana logo Grafana Monitoring Dashboards

External Resources and Services

Even whe the premise is to deploy all services in the kubernetes cluster, there is still a need for a few external services/resources. Below is a list of external resources/services and why we need them.

Cloud external services

  Provider Resource Purpose
letsencrypt logo Letsencrypt TLS CA Authority Signed valid TLS certificates
ionos logo IONOS DNS DNS and DNS-01 challenge for certificates

Alternatives:

  1. Use a private PKI (custom CA to sign certificates).

    Currently supported. Only minor changes are required. See details in Doc: Quick Start instructions.

  2. Use other DNS provider.

    Cert-manager / Certbot used to automatically obtain certificates from Let’s Encrypt can be used with other DNS providers. This will need further modifications in the way cert-manager application is deployed (new providers and/or webhooks/plugins might be required).

    Currently only acme issuer (letsencytp) using IONOS as dns-01 challenge provider is configured. Check list of supported dns01 providers.

Self-hosted external services

There is another list of services that I have decided to run outside the kuberentes cluster selfhosting them.

  External Service Resource Purpose
minio logo Minio S3 Object Store Cluster Backup
vault logo Hashicorp Vault Secrets Management Cluster secrets management

Minio backup servive is hosted in a VM running in Public Cloud, using Oracle Cloud Infrastructure (OCI) free tier.

Vault service is running in one of the cluster nodes, node1, since Vault kubernetes authentication method need access to Kuberentes API, I won’t host Vault service in Public Cloud.

What I have built so far

From hardware perspective I built two different versions of the cluster

  • Cluster 1.0: Basic version using dedicated USB flash drive for each node and centrazalized SAN as additional storage

Cluster-1.0

  • Cluster 2.0: Adding dedicated SSD disk to each node of the cluster and improving a lot the overall cluster performance

!Cluster-2.0

  • Cluster 3.0: Creating hybrid ARM/x86 kubernetes cluster, combining Raspberry PI nodes with x86 mini PCs

!Cluster-3.0

What I have developed so far

From software perspective, I have developed the following:

  1. Cloud-init template files for initial OS installation in Raspberry PI nodes

    Source code can be found in Pi Cluster Git repository under metal/rpi/cloud-init directory.

  2. Ansible playbook and roles for configuring cluster nodes and installating and bootstraping K3S cluster

    Source code can be found in Pi Cluster Git repository under /ansible directory.

    Aditionally several ansible roles have been developed to automate different configuration tasks on Ubuntu-based servers that can be reused in other projects. These roles are used by Pi-Cluster Ansible Playbooks

    Each ansible role source code can be found in its dedicated Github repository and is published in Ansible-Galaxy to facilitate its installation with ansible-galaxy command.

    Ansible role Description Github
    ricsanfre.security Automate SSH hardening configuration tasks
    ricsanfre.ntp Chrony NTP service configuration
    ricsanfre.firewall NFtables firewall configuration
    ricsanfre.dnsmasq Dnsmasq configuration
    ricsanfre.storage Configure LVM
    ricsanfre.iscsi_target Configure iSCSI Target
    ricsanfre.iscsi_initiator Configure iSCSI Initiator
    ricsanfre.k8s_cli Install kubectl and Helm utilities
    ricsanfre.fluentbit Configure fluentbit
    ricsanfre.minio Configure Minio S3 server
    ricsanfre.backup Configure Restic
    ricsanfre.vault Configure Hashicorp Vault
  3. Packaged Kuberentes applications (Helm, Kustomize, manifest files) to be deployed using ArgoCD

    Source code can be found in Pi Cluster Git repository under /argocd directory.

  4. This documentation website picluster.ricsanfre.com, hosted in Github pages.

    Static website generated with Jekyll.

    Source code can be found in the Pi-cluster repository under /docs directory.

Software used and latest version tested

The software used and the latest version tested of each component

Type Software Latest Version tested Notes
OS Ubuntu 22.04.2  
Control Ansible 2.16.3  
Control cloud-init 23.1.2 version pre-integrated into Ubuntu 22.04.2
Kubernetes K3S v1.29.1 K3S version
Kubernetes Helm v3.12  
Metrics Kubernetes Metrics Server v0.6.3 version pre-integrated into K3S
Kubernetes etcd v3.5.9-k3s1 version pre-integrated into K3S
Computing containerd v1.7.11-k3s2 version pre-integrated into K3S
Networking Flannel v0.24.0 version pre-integrated into K3S
Networking CoreDNS v1.10.1 version pre-integrated into K3S
Networking Metal LB v0.14.3 Helm chart version: 0.14.3
Service Mesh Linkerd v2.14.10 Helm chart version: linkerd-control-plane-1.16.11
Service Proxy Traefik v2.10.6 Helm chart version: 26.0.0
Service Proxy Ingress NGINX v1.9.6 Helm chart version: 4.9.1
Storage Longhorn v1.5.3 Helm chart version: 1.5.3
Storage Minio RELEASE.2024-03-03T17-50-39Z Helm chart version: 5.1.0
TLS Certificates Certmanager v1.14.3 Helm chart version: v1.14.3
Logging ECK Operator 2.12.0 Helm chart version: 2.11.1
Logging Elastic Search 8.13.0 Deployed with ECK Operator
Logging Kibana 8.13.0 Deployed with ECK Operator
Logging Fluentbit 2.2.2 Helm chart version: 0.44.0
Logging Fluentd 1.15.3 Helm chart version: 0.5.2 Custom docker image from official v1.15.3
Logging Loki 2.9.6 Helm chart grafana/loki version: 5.47.1
Monitoring Kube Prometheus Stack v0.72.0 Helm chart version: 57.1.1
Monitoring Prometheus Operator v0.72.0 Installed by Kube Prometheus Stack. Helm chart version: 57.1.1
Monitoring Prometheus v2.51.0 Installed by Kube Prometheus Stack. Helm chart version: 57.1.1
Monitoring AlertManager v0.27.0 Installed by Kube Prometheus Stack. Helm chart version: 57.1.1
Monitoring Grafana 10.4.0 Installed as dependency of Kube Prometheus Stack chart 57.1.1
Monitoring Prometheus Node Exporter v1.7.0 Installed as dependency of Kube Prometheus Stack chart. Helm chart version: 57.1.1
Monitoring Prometheus Elasticsearch Exporter 1.7.0 Helm chart version: prometheus-elasticsearch-exporter-5.6.0
Tracing Grafana Tempo 2.4.0 Helm chart: tempo-distributed (1.9.0)
Backup Minio External (self-hosted) RELEASE.2024-03-07T00:43:48Z  
Backup Restic 0.16.4  
Backup Velero 1.13.0 Helm chart version: 6.0.0
Secrets Hashicorp Vault 1.15.6  
Secrets External Secret Operator 0.9.13 Helm chart version: 0.9.13
SSO Keycloak 23.0.7 Bitnami Helm chart version: 19.3.4
SSO Oauth2.0 Proxy 7.6.0 Helm chart version: 7.1.0
GitOps Argo CD v2.10.4 Helm chart version: 6.7.3

Last Update: Mar 02, 2024

Comments: