After months of waiting, I finally got myself an instance with Libre Cloud. I was expecting basic file storage with a few goodies but boy, this is soooo much more. I am amaze by how complete this is!!! Apps let me configure my instance to fit everything I need, my workflow is now crazy fast and I can finally say goodbye to gdrive, gsuite, trello, calendar, etc. All of this, with 1tb while not giving any of ma data to some evil business for… 10$ cad a month!? Can’t believe this is not what every organisation are using.

  • x3i@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    Update: seems like the persistence section is sufficient; I have

    persistence:
      enabled: true
      existingClaim: nextcloud-config-claim
    
    

    at the end of my values file which references a volume claim (and volume) that I created manually upfront. The importand file is config.php. Back that thing up immediately and three times, print it if you have to. The secret in there is unrecoverable otherwise and needed for any repair actions.
    I also use the postgresql sub-chart (by simply enabling postgresql as database) and provide a claim there:

    postgresql:
      enabled: true
    global:
        postgresql:
          auth:
            username: XX
            password: YY
            database: nextcloud
      image:
        repository: postgres
        tag: "14"
        postgresqlDataDir: /bitnami/pgdata
      primary:
        persistence:
          enabled: true
          existingClaim: nextcloud-db-claim
    
    

    Hope it helps!