We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A large portion of the time our CI runs take today are image pulls that happen inside ContainerD inside of KIND clusters.
Kind does not currently natively support loading image caches into ContainerD and so the effect is that images are pulled repeatedly (and in the case of docker registry images rate-limits can be quickly reached).
We should implement a mechanism in our CI to cache these images between builds in order to improve CI execution times.
kind load
OR
kind
actions/cache
cluster.Clusters
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem Statement
A large portion of the time our CI runs take today are image pulls that happen inside ContainerD inside of KIND clusters.
Kind does not currently natively support loading image caches into ContainerD and so the effect is that images are pulled repeatedly (and in the case of docker registry images rate-limits can be quickly reached).
We should implement a mechanism in our CI to cache these images between builds in order to improve CI execution times.
Proposed Solution
kind load
functionality to load the image archives on buildOR
kind
for mounting the ContainerD image directories on the host systemactions/cache
on buildOR
cluster.Clusters
with the CI registryAcceptance Criteria
The text was updated successfully, but these errors were encountered: