provisioning-catalog/providers/local/nickel/defaults.ncl

69 lines
2.1 KiB
Text
Raw Normal View History

# Local Provider Defaults - Concrete Configuration Values
# Migrated from: provisioning/extensions/providers/local/kcl/
{
# Default storage configuration
storage | default = {
volname | default = "local-storage",
labels | default = "",
encrypted | default = false,
},
# Default server defaults (configuration template)
server_defaults_local | default = {
provider | default = "local",
prov_settings | default = "defs/local_data.k",
prov_settings_clean | default = false,
not_use | default = false,
time_zone | default = "UTC",
plan | default = "",
storage_os | default = "",
storages | default = [],
ssh_key_path | default = "",
ssh_key_name | default = "",
priv_cidr_block | default = "10.11.1.0/24",
network_private_name | default = "Private Network",
liveness_ip | default = "$network_public_ip",
liveness_port | default = 22,
labels | default = "{Key=cluster,Value=k8s}",
user | default = "root",
},
# Default local server configuration
server_local | default = {
hostname | default = "local-default-server",
title | default = "Default Local Server",
network_private_ip | default = "",
extra_hostnames | default = [],
taskservs | default = [],
clusters | default = [],
storages | default = [
{
volname | default = "local-storage",
labels | default = "",
encrypted | default = false,
},
],
provider | default = "local",
prov_settings | default = "defs/local_data.k",
prov_settings_clean | default = false,
not_use | default = false,
time_zone | default = "UTC",
plan | default = "",
storage_os | default = "",
ssh_key_path | default = "",
ssh_key_name | default = "",
priv_cidr_block | default = "10.11.1.0/24",
network_private_name | default = "Private Network",
liveness_ip | default = "$network_public_ip",
liveness_port | default = 22,
labels | default = "{Key=cluster,Value=k8s}",
user | default = "root",
},
# Default provisioning configuration
provision_local | default = {
zone | default = "local",
},
}