Closed puni4220 closed 4 months ago
This commit fixes genestack issue https://github.com/rackerlabs/genestack/issues/340 to remove trailing newline (\n) from the base64 secrets
I have tested the modifications in my lab and the resulting secret.yaml file could be applied and secrets were created without any issue
instead of doing base64 | tr -d '\n', can we just use base64 -w0?
base64 | tr -d '\n'
base64 -w0
Thanks for the feedback. I have modified the file
This commit fixes genestack issue https://github.com/rackerlabs/genestack/issues/340 to remove trailing newline (\n) from the base64 secrets
I have tested the modifications in my lab and the resulting secret.yaml file could be applied and secrets were created without any issue