I would like to write identities schema on separate file, not on .Values.kratos.identitySchemas.<filename>.<json-schema>.
Json schema locales on same directory which my values on. It allows me to use hints from my IDE.
Describe your ideal solution
On my directory I have next structure:
values.yaml
user.schema.json
On values.yaml I use my file so:
# other values
kratos:
# other values
identitySchemas:
user.schema.json: {{ .Values.user_schema }} # I set key of file myself
To pass file to .Values.user_schema using --set-file helm CLI arg:
Preflight checklist
Describe your problem
I would like to write identities schema on separate file, not on
.Values.kratos.identitySchemas.<filename>.<json-schema>
. Json schema locales on same directory which my values on. It allows me to use hints from my IDE.Describe your ideal solution
On my directory I have next structure:
On values.yaml I use my file so:
To pass file to
.Values.user_schema
using--set-file
helm CLI arg:Workarounds or alternatives
Needs to use helm tpl function
Version
kratos 0.25.2
Additional Context
No response