Replies: 1 comment
-
Thanks for the idea @fenech ! Maybe this would be nice to include in Oathkeeper Next-Gen? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I ran into an issue earlier, when trying to use the scratch-based image in an initContainer. The command
oathkeeper credentials generate
sends its output toos.Stdout
, which means that it depends on a parent shell to write the output to a file.https://github.com/ory/oathkeeper/blob/master/cmd/credentials_generate.go#L46
My current workaround is to use the Alpine-based image instead, so that I can redirect the output of the command. I think it would be convenient to add an option like
--output
, so that a destination path could be passed, and the JWKs written to the path.Beta Was this translation helpful? Give feedback.
All reactions