prehistoric-account-60014
01/29/2021, 1:54 AM@pulumi/kubernetes@2.7.8
and I'm now getting errors due to a different format for secret data. secret.data.apply(data => console.log(data))
is logging a wrapped object that looks something like this:
{
'4dabf18193072939515e22adb298388d': '1b47061264138c4ac30d75fd1eb44270',
value: { privateKey: '<base64>' }
}
data
should just be { privateKey: '<base64' }
. Is this a bug or perhaps a breaking change? Has anybody else run into this issue?billowy-army-68599
prehistoric-account-60014
01/29/2021, 2:16 AMContainerCreating
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'privateKey'
as a string, but it’s nice to be able to just use the output and keeping a single source of truthsparse-park-68967
02/01/2021, 9:31 PMprehistoric-account-60014
02/02/2021, 12:35 AMv2.19.0