Jakub Błaszczyk
Jakub Błaszczyk
Hi there, sadly I could not reproduce your problem with the installation: ```shell $ make kind-start $ make postgresql $ helm install ory-hydra helm/charts/hydra --values .circleci/values/hydra.yaml NAME: ory-hydra LAST DEPLOYED:...
Hi there, i think i found the source of the confusion here :) In the [cli docs](https://www.ory.sh/docs/hydra/cli/hydra-serve#options) the parameter is expecting a string list of urls, and that is what...
Hi there! If you are concerned about leaking sensitive data within the values/VCS, I would recommend overwriting those values with envs that are read from secrets. this should be more...
Hi there! You are correct, the values is not consistent with the rest of the ory ecosystem :/ However your method introduces a breaking change, instead I would suggest the...
Hello there, The core thing causing this behaviour is that the value of DSN is required at startup of the container/pod. You could technically set the DSN to be `memory`...
I do have the feeling that this is over engineering a bit. So, in your situation, your DB provider gives you a set of values that you'd like to supply...
I understand, in your case the best approach would be to have an intermediate job that prepares stuff for kratos, but I can understand why you may not to do...
I see, good catch with the `statefulset`, looks like a leftover that was missed when we were refactoring the chart. It is a breaking change, but for the sake of...
Hi there, I think that actually the chart supports everything you might need for this to work: - [Use custom secret for hydra](https://github.com/ory/k8s/blob/master/helm/charts/hydra/values.yaml#L125) - Mount additional config files [as extraVolumes](https://github.com/ory/k8s/blob/master/helm/charts/hydra/values.yaml#L223)...
I see. I guess the simples solution will be to port the same mechanism of optional secret as we have in [keto](https://github.com/ory/k8s/blob/master/helm/charts/keto/values.yaml#L97) Edit: I was mistaken, changing the charts to...