When setting the schema through Helm charts: ```k...
# ory-selfhosting
w
When setting the schema through Helm charts:
Copy code
kratos:
  development: true

  identitySchemas:
    identity.default.schema.json: |
I get the following error:
Copy code
The configuration contains values or keys which are invalid:
identity.schemas: <nil>
                  ^-- one or more required properties are missing
Where on the pod would the 'identity.default.schema.json' be stored? The path? Should I reference the path as follows:
Copy code
config:
    identity:
      schemas:
        - id: default
          url: <file://identity.default.schema.json>
t
They're in
/etc/config/
so you'd want something like;
Copy code
schemas:
          - id: default
            url: file:///etc/config/identity.default.schema.json