/homelab

Ready to deploy, media centric, homelab stack

Primary LanguageSmarty

Requirements

  • Nginx ingress controller:
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
helm install ingress-nginx ingress-nginx/ingress-nginx \
    --namespace ingress-nginx \
    --create-namespace
  • cert-manager
helm repo add jetstack https://charts.jetstack.io
helm repo update
helm install cert-manager jetstack/cert-manager \
    --namespace cert-manager \
    --create-namespace \
    --set installCRDs=true \
    --set 'extraArgs={--dns01-recursive-nameservers-only,--dns01-recursive-nameservers=8.8.8.8:53\,1.1.1.1:53}'

Install

  • Add this repo as a helm chart
helm repo add homelab https://vowywowy.github.io/homelab/
helm repo update
  • Read values.yaml and deploy as desired. For example, this exactly what I use for values.yaml
cloudflare:
  apiKey: <cf api key>
  email: <email>

letsEncrypt:
  email: < email>
  production: true

domain: app.lan.rip

mediaPersistence:
  enabled: true
  type: hostPath

apps:
  oauth2proxy:
    users:
    - vowywowy
    secret:
      clientID: <oauth id>
      clientSecret: <oauth secret>