FaultyCodeF
ZITADELβ€’2w agoβ€’
11 replies
FaultyCode

No tables or records created after first startup

βš™οΈConfiguration🏬Self-hostedπŸͺ²Bugs❓Questionβœ…Solved
Use-case: I am self hosting. Zitadel on a three node Talos cluster
Version: v4.11.0
Stack: Right now I am just running it by itself with no other services connected to it since I haven't been able to get it up and running
What you expected to happen: After starting up there should be tables and records in the zitadel database but there are no tables or records of any kind.
What went wrong: I have no idea. Below is my
values.yaml
file. I am aplying the Helm chart using the FluxCD HelmRelease CRD but I doubt that matters much.

    image:
      tag: v4.11.0
    zitadel:
      configSecretName: zitadel
      masterkeySecretName: zitadel
      configmapConfig:
        ExternalSecure: true
        ExternalDomain: external.domain.xyz
        FirstInstance:
          Org:
            Human:
              UserName: "admin@zitadel.com"
              Password: "XXXXX" 
              FirstName: "Zitadel"
              LastName: "Admin"
              Email: 
                Address: "admin@zitadel.com"
                Verified: true
        Database:
          Postgres:
            Host: cluster-1-rw.cnpg-system.svc.cluster.local
            Database: zitadel
            MaxOpenConns: 20
            MaxIdleConns: 10
            MaxConnLifetime: 30m
            MaxConnIdleTime: 5m
            User:
              Username: zitadel
              SSL:
                Mode: disable
            Admin:
              Username: zitadel
              SSL:
                Mode: disable
    metrics:
      enabled: true
    podDisruptionBudget:
      enabled: true
      minAvailable: 1
Was this page helpful?