🌱 Kubernetes

The Kubernetes cluster is deployed using Talos, leveraging M.2 NVMe SSDs across all nodes for high-performance storage. The cluster uses OpenEBS-MayaStor as the storage solution, ensuring low-latency, reliable, and efficient block storage for workloads.

Core Components

GitOps

Flux watches the clusters in my kubernetes folder (see Directories below) and ensures that my clusters are updated based on the state of the corresponding Git repository.

In my setup, Flux operates by recursively scanning the kubernetes/apps folder until it identifies the top-level kustomization.yaml file within each directory. This file serves as the entry point for Flux, and it lists all the resources to be applied to the cluster. Typically, the kustomization.yaml contains a namespace resource and one or more Flux kustomizations (ks.yaml). These kustomizations govern the deployment of specific resources, including HelmRelease resources or other application-specific resources, which Flux subsequently applies to the cluster.

Renovate continuously monitors my entire repository for dependency updates. When an update is detected, Renovate automatically creates a pull request. Upon merging these pull requests, Flux is triggered to apply the changes to my clusters, ensuring that my environments are always aligned with the latest desired state as defined in Git.

This GitOps workflow enables a fully automated and declarative approach to managing both the infrastructure and application deployments across my Kubernetes clusters. By relying on Flux and Renovate, I can ensure that updates are consistent, repeatable, and seamlessly applied, maintaining the integrity and reliability of the cluster without manual intervention.

Directories

This Git repository contains the following directories under Kubernetes.

📁 kubernetes
├── 📁 apps           # applications
├── 📁 bootstrap      # bootstrap procedures
├── 📁 components     # re-useable components
├── 📁 flux           # flux system configuration
└── 📁 talos          # talos configuration

Flux Workflow

This is a high-level look how Flux deploys my applications with dependencies. In most cases a HelmRelease will depend on other HelmRelease's, in other cases a Kustomization will depend on other Kustomization's, and in rare situations an app can depend on a HelmRelease and a Kustomization. The example below shows that searxng won't be deployed or upgrade until the onepassword-store Helm release is installed or in a healthy state.

graph TD
    A>Kustomization:external-secrets] -->|Creates| B[HelmRelease:external-secrets]
    C>Kustomization:onepassword-connect] -->|Creates| D[HelmRelease:onepassword-connect]
    E>Kustomization:onepassword-store] -->|Creates| F[HelmRelease:onepassword-store]
    F>HelmRelease:onepassword-store] -->|Depends on| B>HelmRelease:external-secrets]
    F>HelmRelease:onepassword-store] -->|Depends on| D>HelmRelease:onepassword-connect]
    G>Kustomization:gatus] -->|Creates| H[HelmRelease:gatus]
    I>Kustomization:searxng] -->|Creates| J[HelmRelease:searxng]
    J>HelmRelease:searxng] -->|Depends on| F>HelmRelease:onepassword-store]
    J>HelmRelease:searxng] -->|Creates| K>Kustomization:gatus-components]
    K>Kustomization:gatus-components] -->|Depends on| H>HelmRelease:gatus]