Skip to content
New issue

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

Add optional in-memory cache of HelmRepository index files #626

Merged
merged 3 commits into from
Apr 4, 2022

Commits on Apr 1, 2022

  1. Cache HelmRepository index files

    If implemented, will provide users with a way to cache index files.
    
    This addresses issues where the index file is loaded and unmarshalled in
    concurrent reconciliation resulting in a heavy memory footprint.
    
    The caching strategy used is cache aside, and the cache is a k/v store
    with expiration.
    
    The cache number of entries and ttl for entries are configurable.
    
    The cache is optional and is disabled by default
    
    Signed-off-by: Soule BA <soule@weave.works>
    souleb committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    366f5cf View commit details
    Browse the repository at this point in the history
  2. Add MIT Licence copyright notice

    Signed-off-by: Soule BA <soule@weave.works>
    souleb committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    0f93028 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2022

  1. Update the docs with a section regarding the cache usage

    Signed-off-by: Soule BA <soule@weave.works>
    souleb committed Apr 2, 2022
    Configuration menu
    Copy the full SHA
    7ff96a8 View commit details
    Browse the repository at this point in the history