Disable memcached on K8s

Hi guys,

I’m trying to deploy gitea in Kubernets without DB amd without memcached. I’m using the information provided here: gitea/helm-chart: Helm chart for gitea - helm-chart - Gitea: Git with a cup of tea

Disabling the DB (using sqlite3) works but I can’t disable memcached. I’m using a values.yaml with helm:

gitea:
  config:
    cache:
      ENABLED: true
      ADAPTER: memory
      INTERVAL: 60
      HOST: 127.0.0.1:9090

Could you point out what I am doing wrong here please?

Thanks!
posi