how hard would it be to build caching into `k8s.ya...
# kubernetes
b
how hard would it be to build caching into
k8s.yaml.ConfigFile
if the
args.file
is a URL? I’m using one in a module and its making 16 concurrent requests to Github releases which gets ratelimited for obvious reasons.
g
Not that difficult in theory, but it would have to be implemented for each language SDK, so that complicates it a bit. Can you file an issue?
As a workaround in the meantime, you could download the files yourself and then point `ConfigFile`/`ConfigGroup` to the files on disk
b
That’s what I’m getting to currently, I’ll file an issue afterwards. Thanks!
👍 1