This message was deleted.
# kubernetes
s
This message was deleted.
p
I was using v2.6.2 before
b
cc @broad-dog-22463
p
What ended up happening was that the deployment pods stayed on
ContainerCreating
forever because I did
secret.data.apply(data => Object.keys(data)[])
to get the key for the mounted secret. But instead of
privateKey
I was getting
4dabf18193072939515e22adb298388d
, which Kubernetes couldn’t find and so it couldn’t mount the volumes and everything just hanged
For now I just hard-coded
'privateKey'
as a string, but it’s nice to be able to just use the output and keeping a single source of truth
s
what version CLI are/were you on?
p
v2.19.0
I think. I’m not 100% on that. I can try and set up a repro when I get some time