Update configuration files, templates, and internal documentation for the provisioning repository system. Configuration Updates: - KMS configuration modernization - Plugin system settings - Service port mappings - Test cluster topologies - Installation configuration examples - VM configuration defaults - Cedar authorization policies Documentation Updates: - Library module documentation - Extension API guides - AI system documentation - Service management guides - Test environment setup - Plugin usage guides - Validator configuration documentation All changes are backward compatible.
22 lines
722 B
Plaintext
22 lines
722 B
Plaintext
# Rook Ceph Storage Template (REAL from wuji)
|
|
# Extracted from wuji production: /workspace/infra/wuji/taskservs/rook-ceph.k
|
|
|
|
import taskservs.storage.rook_ceph.kcl.rook_ceph as rook_ceph
|
|
|
|
# Rook Ceph Node schema (from wuji)
|
|
schema RookCephNode {
|
|
name: str
|
|
devices: [str]
|
|
}
|
|
|
|
# Real wuji Rook Ceph configuration
|
|
_rook_ceph_taskserv = rook_ceph.RookCeph {
|
|
ceph_image = "quay.io/ceph/ceph:v18.2.4" # REAL: exact image from wuji
|
|
rookCeph_image = "rook/ceph:master" # REAL: rook image from wuji
|
|
nodes = [
|
|
{name = "wuji-strg-0", devices = ["vda3", "vda4"]} # REAL: node config
|
|
{name = "wuji-strg-1", devices = ["vda3", "vda4"]} # REAL: node config
|
|
]
|
|
}
|
|
|
|
_rook_ceph_taskserv |