Tag: gzip

  • Fast GZip Compression With PIGZ

    Fast GZip Compression With PIGZ

    Compressing TAR archives with GZip can be.. slow. What if you could use all the threads available on your CPU? You can with PIGZ! Install on MacOS with Brew: Compress tar archives with pigz (high compressionrate) Save them bits 👾

  • Kubernetes – Enable GZip For Nginx Ingress Controller

    Kubernetes – Enable GZip For Nginx Ingress Controller

    It may feel obvious, like something that just should… be there? I am of course speaking of GZip compression for NGinx Ingress on Kubernetes… Duh. Here’s how to enable it (once deployed): First, edit the configmap Second, Add the following :wq to save This should GZIP compress everything Compress all the things 👾

  • Kubernetes – Simple CronJob for MySQL/MariaDB Backup

    Kubernetes – Simple CronJob for MySQL/MariaDB Backup

    No Secret, No Configmap, No Fuzz. Just a command and args one-liner that gets the job done, day after day, with an invaluable result on the day that you reaaaally need it. Example Backup Cron: This will create a daily job (00:00, 12AM) that runs container image “mysqldump”, generously authored by docker.io/bigtruedata. It will store…