22 lines
649 B
Plaintext
22 lines
649 B
Plaintext
|
|
# KCL Version configuration for containerd taskserv
|
||
|
|
# Uses proper import from centralized schema definitions
|
||
|
|
import taskservs.version as schema
|
||
|
|
|
||
|
|
# Containerd taskserv configuration
|
||
|
|
_version = schema.TaskservVersion {
|
||
|
|
name = "containerd"
|
||
|
|
version = schema.Version {
|
||
|
|
current = "1.7.24"
|
||
|
|
source = "https://github.com/containerd/containerd/releases"
|
||
|
|
tags = "https://github.com/containerd/containerd/tags"
|
||
|
|
site = "https://containerd.io"
|
||
|
|
# Pinned for production stability
|
||
|
|
check_latest = True
|
||
|
|
grace_period = 86400
|
||
|
|
}
|
||
|
|
dependencies = ["runc"]
|
||
|
|
}
|
||
|
|
|
||
|
|
# Output for dynamic cache system
|
||
|
|
_version
|