kube-fledged
kube-fledged copied to clipboard
A kubernetes operator for creating and managing a cache of container images directly on the cluster worker nodes, so application pods start almost instantly
as gcr doesn't support multiarch images (fixes #181)
Ideally I do not need to periodically refresh images at all since we tag our images, however what I would need is the images to be cached to new nodes...
My install to an arm cluster went surprisingly well. The only thing that failed was the busybox docker image pull since gcr docker registry doesn't support multiarch images and it...
Kube-fledged currently supports only linux nodes. Add support for windows nodes.
Our use case involves having nearly two thousand distinct images on each kubelet, and different images on different kubelets. We are evaluating kube-fledged as a component of how we can...
Hi, I'm not sure I'm supposed to be asking a support question here, and I am very new to Kubernetes and kube-fledged, so will appreciate your patience, and apologies if...
As a first step in supporting windows nodes in kube-fledged, build multi-arch images with windows support. Changes needed in Github action workflow.
hey, would be superb to implement openmetrics support. ideas? thinking about: - kube_fledged_desired - kube_fledged_failed - kube_fledged_pulling - kube_fledged_succeeded thanks
Create end to end test suite using suitable go testing frameworks. The suite can then be executed for PRs and release:- - Install using manifests - Install using helm chart...
Is there a way to pull all tags or based on regex of an image ? For example I'd like to cache all tags for image X because my users...