- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
41 lines
890 B
Plaintext
41 lines
890 B
Plaintext
# OCI Registry Default Configurations
|
|
|
|
{
|
|
# Local Zot registry for solo/development deployments
|
|
local_zot_registry = {
|
|
type = "zot",
|
|
deployment = "local",
|
|
auto_start = true,
|
|
storage_type = "filesystem",
|
|
auth_enabled = false,
|
|
},
|
|
|
|
# Remote Harbor registry for multiuser deployments
|
|
remote_harbor_registry = {
|
|
type = "harbor",
|
|
deployment = "remote",
|
|
auto_start = false,
|
|
auth_enabled = true,
|
|
ssl_enabled = true,
|
|
verify_ssl = true,
|
|
},
|
|
|
|
# Docker Hub for public distribution
|
|
docker_hub = {
|
|
type = "docker_hub",
|
|
deployment = "remote",
|
|
auto_start = false,
|
|
auth_enabled = true,
|
|
registry_url = "https://registry-1.docker.io",
|
|
},
|
|
|
|
# GHCR for GitHub container registry
|
|
ghcr = {
|
|
type = "ghcr",
|
|
deployment = "remote",
|
|
auto_start = false,
|
|
auth_enabled = true,
|
|
registry_url = "https://ghcr.io",
|
|
},
|
|
}
|