cat > gitea-values.yaml <<'YAML'
ingress:
  enabled: true
  className: traefik
  annotations:
    cert-manager.io/cluster-issuer: letsencrypt-prod
  hosts:
    - host: rv32i.pl
      paths:
        - path: /
          pathType: Prefix
  tls:
    - secretName: rv32i-pl-tls
      hosts:
        - rv32i.pl
gitea:
  admin:
    existingSecret: gitea-admin
  config:
    server:
      DOMAIN: rv32i.pl
      ROOT_URL: https://rv32i.pl/
      PROTOCOL: http
persistence:
  enabled: true
  storageClass: local-path
  size: 10Gi
postgresql:
  enabled: true
  primary:
    persistence:
      enabled: true
      storageClass: local-path
      size: 10Gi
postgresql-ha:
  enabled: false
YAML