Configuration for my self-hosted software deployed to Kubernetes.
Go to file
Rob Watson d1c429c170 invidious: Update configuration 2022-08-17 21:03:26 +02:00
cert-manager Setup Ingress resource and cert-manager integration 2022-05-11 03:10:48 +02:00
deploy invidious: Update configuration 2022-08-17 21:03:26 +02:00
kind Add solar-toolkit-gateway configuration 2022-07-13 22:33:45 +02:00
.gitignore Add basic Kustomize build flow 2022-05-05 22:52:43 +02:00
LICENSE Add LICENSE 2022-06-06 21:46:41 +02:00
README.md Update README 2022-05-05 23:00:30 +02:00
picture.jpg Update README 2022-05-05 23:00:30 +02:00

README.md

Netflux on Kubernetes

This is a learning project to migrate the self-hosted services that I host at netflux.io to Kubernetes.

Me deploying my blog on Kubernetes

This repository contains the Kubernetes manifests, which are built using Kustomize. Helm chart dependencies are inflated and managed in this repository to improve observability. The cluster is deployed to DigitalOcean managed K8S in production, but can be easily applied to a local cluster for testing.

Building

The manifests can be built with:

make dev

and applied with:

make dev | kubectl apply -f -

Cluster setup

cert-manager

cert-manager should only be installed in production. It is not managed inside this repository.

See: https://cert-manager.io/docs/installation/helm/

helm repo add jetstack https://charts.jetstack.io
helm repo up
helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --version v1.8.0 --set installCRDs=true

# create issuers
kubectl apply -f cert-manager/issuer-staging.yml
kubectl apply -f cert-manager/issuer-production.yml

This should be sufficient for cert-manager to issue certificates automatically when the tls.enabled value is set to true.