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.
21 lines
513 B
Plaintext
21 lines
513 B
Plaintext
# Main entry point for provisioning KCL module
|
|
# This file exports all the schemas and configurations needed for provisioning
|
|
|
|
# Import and re-export core schemas
|
|
import .settings
|
|
import .defaults
|
|
import .dependencies
|
|
import .server
|
|
import .cluster
|
|
import .batch
|
|
import .workflows
|
|
import .version
|
|
|
|
# Export Settings schema for external use
|
|
Settings = settings.Settings
|
|
|
|
# Export other common schemas
|
|
Defaults = defaults.Defaults
|
|
Server = server.Server
|
|
Cluster = cluster.Cluster
|
|
BatchWorkflow = batch.BatchWorkflow |