Quick question, is there any simple way to user th...
# general
b
Quick question, is there any simple way to user the
data
inside the ConfigMap to get all the keys in typescript. Need these to make the volume mounts with keys instead of the hole folder.
I want to do something like this:
Copy code
configMap.data.map(entry => {key: entry.key, path: entry.key})
c
Are you looking for syntax like this?
Copy code
for (let [name, value] of configMap) {}
b
I got a lof of problem because of the Output