Skip to content

25th June 2025

Militancy

  • New: Añadir poema sobre la falta de acción.

    Maravilloso poema de alemán Martin Niemöller sobre la cobardía de los intelectuales alemanes tras el ascenso de los nazis al poder y la subsiguiente purga de sus objetivos escogidos, grupo tras grupo.

    «Cuando los nazis vinieron a llevarse a los comunistas,
    guardé silencio,
    ya que no era comunista,
    
    Cuando encarcelaron a los socialdemócratas,
    guardé silencio,
    ya que no era socialdemócrata,
    
    Cuando vinieron a buscar a los sindicalistas,
    no protesté,
    ya que no era sindicalista,
    
    Cuando vinieron a llevarse a los judíos,
    no protesté,
    ya que no era judío,
    
    Cuando vinieron a buscarme,
    no había nadie más que pudo protestar».
    
  • New: Apps para no saltarte el boycott.

  • New: Oslo advertisement on the importance of the symbols.

    link

Feminism

Memoria histórica

Conflicto vasco

  • New: Añadir referencias sobre el conflicto vasco.

    • Tercera temporada de (de eso no se habla): "Se llamaba como" yo es una serie documental sobre la memoria de la niña Begoña Urroz, sobre las cinco décadas de silencio de una familia… Y sobre el ruido que lo rompió.

Laboral

Collaborating tools

Life navigation

Time navigation

Org Mode

  • Correction: Use unison to sync.

Life chores management

dawarich

  • New: How to see the coordinates of a point.

    You need to enable the "Points" layer, which is on the layers menu at the top right of the map.

    Then if you click on one point you can get the coordinates

Knowledge Management

Aleph

Technology

Coding

Configure Docker to host the application

DevSecOps

Authentik

  • New: Upgrading.

    You can no longer use the latest tag as it can lead to unintentional updates and potentially broken setups.

    The tag will not be removed, however it will also not be updated past 2025.2.

    They strongly recommend the use of a specific version tag for authentik instances' container images like :2025.2.

  • New: Get the values of a chart.

    helm show values zammad --repo https://zammad.github.io/zammad-helm --version 14.0.1
    
  • New: Timestamp Issues ("entry too far behind").

    The most frequent error shows log entries being rejected because their timestamps are too old.

    This suggests either:

    • Clock synchronization issues between your log sources and Loki
    • Delayed log shipping/buffering
    • Replay of old logs

    To solve this:

    • Check that your hosts' clocks are sync
    • Adjust Loki's ingestion window in your config:
      limits_config:
        reject_old_samples: true
        reject_old_samples_max_age: 168h # Increase from default (usually 1h)
      

    You can also prune the logs. For example in the case of a docker container (named dawarich_app) you can:

    sudo truncate -s 0 /var/lib/docker/containers/$(docker inspect -f '{{.Id}}' dawarich_app)/$(docker inspect -f '{{.Id}}' dawarich_app)-json.log
    
  • New: Ingestion rate limit exceeded for user.

    Increase rate limits in Loki config:

    limits_config:
    ingestion_rate_mb: 8 # Increase from 4MB default
      ingestion_burst_size_mb: 16
    

    Also check which logs are triggering this rate limit because it may be the case that the amount of logs is too great due to an error.

Debugging

  • New: PVC or PV is stuck deleting.

    When PVs and PVCs get stuck during deletion, it's usually due to finalizers that prevent the cleanup process from completing. Here are several approaches to resolve this:

    Check for Finalizers

    First, examine what's preventing the deletion:

    kubectl get pv <pv-name> -o yaml | grep finalizers -A 5
    kubectl get pvc <pvc-name> -n <namespace> -o yaml | grep finalizers -A 5
    

    Remove Finalizers (Most Common Solution)

    If you see finalizers like kubernetes.io/pv-protection or kubernetes.io/pvc-protection, you can remove them:

    kubectl patch pvc <pvc-name> -n <namespace> -p '{"metadata":{"finalizers":null}}'
    
    kubectl patch pv <pv-name> -p '{"metadata":{"finalizers":null}}'
    

Operating Systems

Kitty

Filosofía