Skip to content

VDuchauffour/homelab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

homelab

Recreate CA for local network

CERT_DIR=$(mkcert -CAROOT)
kubectl create secret tls mkcert-ca-key-pair -n cert-manager --cert=$CERT_DIR/rootCA.pem --key=$CERT_DIR/rootCA-key.pem
kubectl apply -f cluster/cert-manager/manifests/mkcert-ca-issuer.yaml

In the ingress, adding the following annotation with cert-manager will:

  • Create a Certificate resource
  • Issue a leaf cert signed by your mkcert CA
  • Manage renewals automatically
  • Maintain the qbittorrent-mkcert-tls Secret
ingress:
  enabled: true
  className: traefik
  annotations:
    kubernetes.io/ingress.class: traefik
    cert-manager.io/cluster-issuer: mkcert-ca

Password generation recommandation

pwgen -scyn 32 1
or
openssl rand -base64 32

Misc

To watch the usage of iGPU (through Intel QSV or VAAPI) use the command intel_gpu_top from the package intel-gpu-tools.

You can also check supported VAAPI profiles with vainfo from the package libva-utils.

You can uerify OpenCL availability with clinfo from the package clinfo.

Acknowledgments

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published