22 lines
624 B
Plaintext
22 lines
624 B
Plaintext
# KCL Version configuration for crun taskserv
|
|
# Uses proper TaskservVersion schema for type safety
|
|
import taskservs.version as schema
|
|
|
|
# Crun taskserv configuration
|
|
_version = schema.TaskservVersion {
|
|
name = "crun"
|
|
version = schema.Version {
|
|
current = "latest"
|
|
source = "https://github.com/containers/crun/releases"
|
|
tags = "https://github.com/containers/crun/tags"
|
|
site = "https://github.com/containers/crun"
|
|
# Auto-update for container runtime
|
|
check_latest = True
|
|
grace_period = 86400
|
|
}
|
|
dependencies = []
|
|
}
|
|
|
|
# Output for dynamic cache system
|
|
_version
|