Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Home Ops | 1,176 | 31 minutes ago | 9 | wtfpl | HCL | |||||
A mono repository for my home infrastructure and Kubernetes cluster which adheres to Infrastructure as Code (IaC) and GitOps practices where possible | ||||||||||
Flux Cluster Template | 1,119 | 2 days ago | 3 | mit | Jinja | |||||
A community opinionated template for deploying a single Kubernetes cluster with Ansible backed by Flux, SOPS, GitHub Actions, Renovate, Cilium and more! | ||||||||||
Home Ops | 191 | 3 days ago | 70 | mit | Shell | |||||
My home Kubernetes cluster managed by GitOps (Flux), deployed on Talos Linux. | ||||||||||
K3s Gitops Arm | 142 | 2 years ago | Shell | |||||||
k3s cluster backed by Flux (GitOps) up and running on a cluster of RPi4 | ||||||||||
Infra | 85 | 8 hours ago | 16 | apache-2.0 | HCL | |||||
My home or for-home infrastructure written as code defining GitOps principles for Kubernetes clusters. | ||||||||||
Home Ops | 26 | 2 hours ago | 3 | mit | HCL | |||||
A mono repository for my home infra and Kubernetes cluster adhering to Infrastructure as Code (IaC) and GitOps practices | ||||||||||
Home Ops | 21 | 9 hours ago | 1 | unlicense | Shell | |||||
Homelab & Gitops, Infrastructure as Code (IaC) where possible. K8s cluster running on Talos and managed by Flux. Renovate keeps the repo up to date. | ||||||||||
Ansible Role Vcenter | 21 | 4 years ago | 10 | apache-2.0 | ||||||
Homelab Iac | 18 | 2 days ago | mit | HCL | ||||||
Infrastructure as Code files for homelab cluster. Mirror of https://gitlab.wuhoo.xyz/jerry/homelab-iac | ||||||||||
Gitops | 17 | 11 days ago | 22 | apache-2.0 | Jinja | |||||
GitOps principles to define kubernetes cluster state via code. Community around [email protected] is on discord: https://discord.gg/RGvKzVg |
Welcome to my highly opinionated template for deploying a single Kubernetes (k3s) cluster with Ansible and managing applications with Flux. Upon completion you will be able to expose web applications you choose to the internet with Cloudflare Tunnel.
The following components will be installed in your k3s cluster by default. Most are only included to get a minimum viable cluster up and running.
Additional applications include hajimari, echo-server, system-upgrade-controller, reloader, and kured
With that out of the way please continue on if you are still interested...
It is recommended to have 3 master nodes for a highly available control plane.
The Git repository contains the following directories under kubernetes
and are ordered below by how Flux will apply them.
kubernetes # Kubernetes cluster defined as code
bootstrap # Flux installation
flux # Main Flux configuration of repository
apps # Apps deployed into the cluster grouped by namespace
Very first step will be to create a new public repository by clicking the big green Use this template button on this page.
Clone your new repo to you local workstation and cd
into it.
All of the below commands are run on your local workstation, not on any of your cluster nodes.
Install the most recent version of the CLI tools below. If you are having trouble with future steps, it is very likely you don't have the most recent version of these CLI tools, !especially sops AND yq!.
Install the following CLI tools on your workstation, if you are NOT using Homebrew on MacOS or Linux ignore steps 4 and 5.
Required: age, ansible, flux, weave-gitops, cloudflared, cilium-cli, go-task, direnv, ipcalc, jq, kubectl, python-pip3, pre-commit, sops v3, yq v4
This guide heavily relies on go-task as a framework for setting things up. It is advised to learn and understand the commands it is running under the hood.
Install Python 3 and pip3 using your Linux OS package manager, or Homebrew if using MacOS.
pip3
is working on your command line by running pip3 --version
[Homebrew] Install go-task
brew install go-task/tap/go-task
[Homebrew] Install workstation dependencies
task init
It is advisable to install pre-commit and the pre-commit hooks that come with this repository.
Enable Pre-Commit
task precommit:init
Update Pre-Commit, though it will occasionally make mistakes, so verify its results.
task precommit:update
Here we will create a Age Private and Public key. Using SOPS with Age allows us to encrypt secrets and use them in Ansible and Flux.
Create a Age Private / Public Key
age-keygen -o age.agekey
Set up the directory for the Age key and move the Age file to it
mkdir -p ~/.config/sops/age
mv age.agekey ~/.config/sops/age/keys.txt
Export the SOPS_AGE_KEY_FILE
variable in your bashrc
, zshrc
or config.fish
and source it, e.g.
export SOPS_AGE_KEY_FILE=~/.config/sops/age/keys.txt
source ~/.bashrc
Fill out the Age public key in the appropriate variable in configuration section below, note the public key should start with age
...
In order to use cert-manager
with the Cloudflare DNS challenge you will need to create a API key.
Head over to Cloudflare and create a API key by going here.
Under the API Keys
section, create a global API Key.
Use the API Key in the appropriate variable in configuration section below.
You may wish to update this later on to a Cloudflare API Token which can be scoped to certain resources. I do not recommend using a Cloudflare API Key, however for the purposes of this template it is easier getting started without having to define which scopes and resources are needed. For more information see the Cloudflare docs on API Keys and Tokens.
In order to expose services to the internet you will need to create a Cloudflare Tunnel.
Authenticate cloudflared to your domain
cloudflared tunnel login
Create the tunnel
cloudflared tunnel create k8s
In the ~/.cloudflared
directory there will be a json file with details you need to populate in configuration section below. You can ignore the cert.pem
file.
The .config.env
file contains necessary configuration that is needed by Ansible and Flux.
Copy the .config.sample.env
to .config.env
and start filling out all the environment variables.
All are required unless otherwise noted in the comments.
cp .config.sample.env .config.env
Once that is done, verify the configuration is correct by running:
task verify
If you do not encounter any errors run start having the script wire up the templated files and place them where they need to be.
task configure
Here we will be running an Ansible Playbook to prepare Ubuntu server for running a Kubernetes cluster.
Nodes are not security hardened by default, you can do this with dev-sec/ansible-collection-hardening or similar if supported. This is an advanced configuration and generally not recommended unless you want to DevSecOps your cluster and nodes.
Ensure you are able to SSH into your nodes from your workstation using a private SSH key without a passphrase. This is how Ansible is able to connect to your remote nodes.
Install the Ansible deps
task ansible:init
Verify Ansible can view your config
task ansible:list
Verify Ansible can ping your nodes
task ansible:ping
Run the Ansible prepare playbook
task ansible:prepare
Reboot the nodes (if not done in step 5)
task ansible:force-reboot
Here we will be running a Ansible Playbook to install k3s with this wonderful k3s Ansible galaxy role. After completion, Ansible will drop a kubeconfig
in ./kubeconfig
for use with interacting with your cluster with kubectl
.
If you run into problems, you can run task ansible:nuke
to destroy the k3s cluster and start over.
Verify Ansible can view your config
task ansible:list
Verify Ansible can ping your nodes
task ansible:ping
Install k3s with Ansible
task ansible:install
Verify the nodes are online
task cluster:nodes
# NAME STATUS ROLES AGE VERSION
# k8s-0 Ready control-plane,master 4d20h v1.21.5+k3s1
# k8s-1 Ready worker 4d20h v1.21.5+k3s1
Here we will be installing flux after some quick bootstrap steps.
Verify Flux can be installed
task cluster:verify
# checking prerequisites
# kubectl 1.21.5 >=1.18.0-0
# Kubernetes 1.21.5+k3s1 >=1.16.0-0
# prerequisites checks passed
Push you changes to git
Verify all the *.sops.yaml
and *.sops.yml
files under the ./ansible
, and ./kubernetes
directories are encrypted with SOPS
git add -A
git commit -m "Initial commit 🚀"
git push
Install Flux and sync the cluster to the Git repository
task cluster:install
# namespace/flux-system configured
# customresourcedefinition.apiextensions.k8s.io/alerts.notification.toolkit.fluxcd.io created
Verify Flux components are running in the cluster
task cluster:pods -- -n flux-system
# NAME READY STATUS RESTARTS AGE
# helm-controller-5bbd94c75-89sb4 1/1 Running 0 1h
# kustomize-controller-7b67b6b77d-nqc67 1/1 Running 0 1h
# notification-controller-7c46575844-k4bvr 1/1 Running 0 1h
# source-controller-7d6875bcb4-zqw9f 1/1 Running 0 1h
Mic check, 1, 2 - In a few moments applications should be lighting up like a Christmas tree
You are able to run all the commands below with one task
task cluster:resources
View the Flux Git Repositories
task cluster:gitrepositories
View the Flux kustomizations
task cluster:kustomizations
View all the Flux Helm Releases
task cluster:helmreleases
View all the Flux Helm Repositories
task cluster:helmrepositories
View all the Pods
task cluster:pods
View all the certificates and certificate requests
task cluster:certificates
View all the ingresses
task cluster:ingresses
Congratulations if all goes smooth you'll have a Kubernetes cluster managed by Flux, your Git repository is driving the state of your cluster.
If you run into problems, you can run task ansible:nuke
to destroy the k3s cluster and start over.
Now it's time to pause and go get some coffee because next is describing how DNS is handled.
direnv will make it so anytime you cd
to your repo's directory it export the required environment variables (e.g. KUBECONFIG
). To set this up make sure you hook it into your shell and after that is done, run direnv allow
while in your repos directory.
The external-dns
application created in the networking
namespace will handle creating public DNS records. By default, echo-server
and the flux-webhook
are the only public sub-domains exposed. In order to make additional applications public you must set an ingress annotation (external-dns.alpha.kubernetes.io/target
) like done in the HelmRelease
for echo-server
.
For split DNS to work it is required to have ${SECRET_DOMAIN}
point to the ${METALLB_K8S_GATEWAY_ADDR}
load balancer IP address on your home DNS server. This will ensure DNS requests for ${SECRET_DOMAIN}
will only get routed to your k8s_gateway
service thus providing internal DNS resolution to your cluster applications/ingresses from any device that uses your home DNS server.
For and example with Pi-Hole apply the following file and restart dnsmasq:
# /etc/dnsmasq.d/99-k8s-gateway-forward.conf
server=/${SECRET_DOMAIN}/${METALLB_K8S_GATEWAY_ADDR}
Now try to resolve an internal-only domain with dig @${pi-hole-ip} hajimari.${SECRET_DOMAIN}
it should resolve to your ${METALLB_INGRESS_ADDR}
IP.
If having trouble you can ask for help in this Github discussion.
If nothing is working, that is expected. This is DNS after all!
Renovatebot will scan your repository and offer PRs when it finds dependencies out of date. Common dependencies it will discover and update are Flux, Ansible Galaxy Roles, Terraform Providers, Kubernetes Helm Charts, Kubernetes Container Images, Pre-commit hooks updates, and more!
The base Renovate configuration provided in your repository can be view at .github/renovate.json5. If you notice this only runs on weekends and you can change the schedule to anything you want or simply remove it.
To enable Renovate on your repository, click the 'Configure' button over at their Github app page and choose your repository. Over time Renovate will create PRs for out-of-date dependencies it finds. Any merged PRs that are in the kubernetes directory Flux will deploy.
Flux is pull-based by design meaning it will periodically check your git repository for changes, using a webhook you can enable Flux to update your cluster on git push
. In order to configure Github to send push
events from your repository to the Flux webhook receiver you will need two things:
Webhook URL - Your webhook receiver will be deployed on https://flux-webhook.${BOOTSTRAP_CLOUDFLARE_DOMAIN}/hook/:hookId
. In order to find out your hook id you can run the following command:
kubectl -n flux-system get receiver/github-receiver
# NAME AGE READY STATUS
# github-receiver 6h8m True Receiver initialized with URL: /hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123
So if my domain was onedr0p.com
the full url would look like this:
https://flux-webhook.onedr0p.com/hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123
Webhook secret - Your webhook secret can be found by decrypting the secret.sops.yaml
using the following command:
sops -d ./kubernetes/apps/flux-system/addons/webhooks/github/secret.sops.yaml | yq .stringData.token
Note: Don't forget to update the BOOTSTRAP_FLUX_GITHUB_WEBHOOK_SECRET
variable in your .config.env
file so it matches the generated secret if applicable
Now that you have the webhook url and secret, it's time to set everything up on the Github repository side. Navigate to the settings of your repository on Github, under "Settings/Webhooks" press the "Add webhook" button. Fill in the webhook url and your secret.
Rancher's local-path-provisioner
is a great start for storage but soon you might find you need more features like replicated block storage, or to connect to a NFS/SMB/iSCSI server. Check out the projects below to read up more on some storage solutions that might work for you.
Authenticating Flux to your git repository has a couple benefits like using a private git repository and/or using the Flux Image Automation Controllers.
By default this template only works on a public GitHub repository, it is advised to keep your repository public.
The benefits of a public repository include:
k8s-at-home
to be included in the k8s-at-home-search. This search helps people discover different configurations of Helm charts across others Flux based repositories.ssh-keygen -t ecdsa -b 521 -C "github-deploy-key" -f ./kubernetes/bootstrap/github-deploy.key -q -P ""
./kubernetes/bootstrap/github-deploy-key.sops.yaml
with the contents of:
apiVersion: v1
kind: Secret
metadata:
name: github-deploy-key
namespace: flux-system
stringData:
# 3a. Contents of github-deploy-key
identity: |
-----BEGIN OPENSSH PRIVATE KEY-----
...
-----END OPENSSH PRIVATE KEY-----
# 3b. Output of curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]'
known_hosts: |
github.com ssh-ed25519 ...
github.com ecdsa-sha2-nistp256 ...
github.com ssh-rsa ...
sops --encrypt --in-place ./kubernetes/bootstrap/github-deploy-key.sops.yaml
sops --decrypt ./kubernetes/bootstrap/github-deploy-key.sops.yaml | kubectl apply -f -
./kubernetes/flux/config/cluster.yaml
:
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: GitRepository
metadata:
name: home-kubernetes
namespace: flux-system
spec:
interval: 10m
# 6a: Change this to your user and repo names
url: ssh://[email protected]/$user/$repo
ref:
branch: main
secretRef:
name: github-deploy-key
task cluster:reconcile
task cluster:gitrepositories
Included in your cluster is the Kubernetes Dashboard. Inorder to log into this you will have to get the secret token from the cluster using the command below.
kubectl -n monitoring get secret kubernetes-dashboard -o jsonpath='{.data.token}' | base64 -d
You should be able to access the dashboard at https://kubernetes.${SECRET_DOMAIN}
Below is a general guide on trying to debug an issue with an resource or application. For example, if a workload/resource is not showing up or a pod has started but in a CrashLoopBackOff
or Pending
state.
flux get sources oci -A
flux get sources git -A
flux get ks -A
flux get hr -A
kubectl -n <namespace> get pods
kubectl -n <namespace> logs <pod-name> -f
Note: If a resource exists, running kubectl -n <namespace> describe <resource> <name>
might give you insight into what the problem(s) could be.
Resolving problems that you have could take some tweaking of your YAML manifests in order to get things working, other times it could be a external factor like permissions on NFS. If you are unable to figure out your problem see the help section below.
support
or flux-cluster-template
channel in the [email protected] Discord server.The world is your cluster, have at it!
Big shout out to all the authors and contributors to the projects that we are using in this repository.
@whazor created this website as a creative way to search Helm Releases across GitHub. You may use it as a means to get ideas on how to configure an applications' Helm values.