Files
infrastructure/kubernetes
2026-01-02 16:23:03 -07:00
..
2025-02-12 22:09:25 -07:00
2025-03-06 20:38:09 -07:00
2026-01-02 13:57:00 -07:00
2025-03-04 08:41:17 -07:00
2025-01-13 21:28:47 -07:00
2026-01-02 16:23:03 -07:00
2026-01-02 16:13:45 -07:00

sources

note: k0s never works as well as you think

https://k3s.io/

nix instructions: https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/cluster/k3s/README.md

tailscale operator

helm repo add tailscale https://pkgs.tailscale.com/helmcharts
helm repo update
helm upgrade \
  --install \
  tailscale-operator \
  tailscale/tailscale-operator \
  --namespace=tailscale \
  --create-namespace \
  --set-string oauth.clientId="<OAauth client ID>" \
  --set-string oauth.clientSecret="<OAuth client secret>" \
  --wait

Currently clouflare domains cannot be CNAME'd to tailscale domains:

Kubernetes ingress controller

ingress

helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update

helm upgrade --install ingress-nginx ingress-nginx/ingress-nginx \
  --namespace ingress-nginx \
  --create-namespace \
  --set controller.kind=DaemonSet \
  --set controller.hostNetwork=true \
  --set controller.service.type=NodePort \
  --set controller.allowSnippetAnnotations=true \
  --set controller.metrics.enabled=false \
  --set controller.ingressClassResource.default=true