You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you use charted-server as your primary Helm Chart registry, there might be repositories, users, or organizations that are inactive and want to be pruned by some constraints (i.e, delete all users that have been last signed in (via POST /users/login) 30 days ago).
As there is no real query language that is extendable, charted-server will rely on a custom SQL-like language called Isuki, or IQL for short.
Isuki (IQL) is Noelware's SQL querying language that is also being built with Noelware Analytics to provide a human and SQL-like language, so:
LastPublished >= 30d - Queries the Isuki object with the property LastPublished that is greater or equal than 30 days.
This will be configured with the GarbageCollectionConfig DSL class, which an example in YAML:
As you use charted-server as your primary Helm Chart registry, there might be repositories, users, or organizations that are inactive and want to be pruned by some constraints (i.e, delete all users that have been last signed in (via POST /users/login) 30 days ago).
As there is no real query language that is extendable, charted-server will rely on a custom SQL-like language called Isuki, or IQL for short.
Isuki (IQL) is Noelware's SQL querying language that is also being built with Noelware Analytics to provide a human and SQL-like language, so:
LastPublished >= 30d
- Queries the Isuki object with the propertyLastPublished
that is greater or equal than 30 days.This will be configured with the GarbageCollectionConfig DSL class, which an example in YAML:
Kotlin Script:
The feature is only enabled if gc is not
null
, so if it is not present or ifgc: null
was specified, then it will not be enabled.Roadmap
garbage-collector
moduleThe text was updated successfully, but these errors were encountered: