Skip to content

blakeblackshear/blakeshome-k8s

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

k3os setup

  1. Download ISO and install k3os
  2. Configure static IP address (https://www.centlinux.com/2019/05/configure-network-on-k3os-machine.html)
    sudo connmanctl services
    sudo connmanctl config ethernet_681def0b1da9_cable --ipv4 manual 192.168.2.4 255.255.255.0 192.168.2.1 --nameservers 1.1.1.1
    
  3. Update /var/lib/rancher/k3os/config.yaml with server config

Editing secrets

Decrypt env.gpg with gpg --decrypt env.gpg > env.

Encrypt env with gpg --symmetric --cipher-algo AES256 env.

Bootstrapping the cluster

  1. Create namespaces
    kubectl create namespace flux
    
  2. Populate secrets
    ./bootstrap-secrets.sh
    
  3. Install Flux Helm Operator
    kubectl apply -f https://raw.githubusercontent.com/fluxcd/helm-operator/1.2.0/deploy/crds.yaml
    helm repo add fluxcd https://charts.fluxcd.io
    helm upgrade -i helm-operator fluxcd/helm-operator \
     --namespace flux \
     --set helm.versions=v3
    
  4. Create volumes
    kubectl apply -f default/volumes/pvc.yaml
    kubectl apply -f default/volumes/restorejobs.yaml
    
  5. Restore volumes and wait for them to finish
    kubectl create job --from=cronjob/esphome-restic-restore esphome-restore
    kubectl create job --from=cronjob/homeassistant-restic-restore homeassistant-restore
    kubectl create job --from=cronjob/minecraft-restic-restore minecraft-restore
    kubectl create job --from=cronjob/plex-restic-restore plex-restore
    kubectl create job --from=cronjob/qbittorrent-restic-restore qbittorrent-restore
    
  6. Install traefik
    kubectl apply -f default/traefik/helmrelease.yaml
    
  7. Setup forward-auth and ingress for traefik
    kubectl apply -f default/traefik/traefik-forward-auth.yaml
    # ensure you wait until the let's encrypt cert was obtained
    kubectl apply -f default/traefik/traefik-ui.yaml
    
  8. Apply other configs
    kubectl apply -f default/
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages