talos/pkg/machinery/constants/constants.go
Noel Georgi c63cf90e32
feat: update k8s to v1.27.0-beta.0
Update k8s to v1.27.0-beta.0

Signed-off-by: Noel Georgi <git@frezbo.dev>
2023-03-21 23:59:17 +05:30

864 lines
34 KiB
Go

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package constants
import (
"time"
cni "github.com/containerd/go-cni"
"github.com/siderolabs/crypto/x509"
)
const (
// DefaultKernelVersion is the default Linux kernel version.
DefaultKernelVersion = "6.1.15-talos"
// DefaultKernelModulesPath is the default path to the kernel modules.
DefaultKernelModulesPath = "/lib/modules" + "/" + DefaultKernelVersion
// KernelParamConfig is the kernel parameter name for specifying the URL.
// to the config.
KernelParamConfig = "talos.config"
// ConfigNone indicates no config is required.
ConfigNone = "none"
// KernelParamPlatform is the kernel parameter name for specifying the
// platform.
KernelParamPlatform = "talos.platform"
// KernelParamBoard is the kernel parameter name for specifying the
// SBC.
KernelParamBoard = "talos.board"
// KernelParamEventsSink is the kernel parameter name for specifying the
// events sink server.
KernelParamEventsSink = "talos.events.sink"
// KernelParamLoggingKernel is the kernel parameter name for specifying the
// kernel log delivery destination.
KernelParamLoggingKernel = "talos.logging.kernel"
// KernelParamWipe is the kernel parameter name for specifying the
// disk to wipe on the next boot and reboot.
KernelParamWipe = "talos.experimental.wipe"
// KernelParamCGroups is the kernel parameter name for specifying the
// cgroups version to use (default is cgroupsv2, setting this kernel arg to '0' forces cgroupsv1).
KernelParamCGroups = "talos.unified_cgroup_hierarchy"
// KernelParamDashboardDisabled is the kernel parameter name for disabling the dashboard.
KernelParamDashboardDisabled = "talos.dashboard.disabled"
// BoardNone indicates that the install is not for a specific board.
BoardNone = "none"
// BoardLibretechAllH3CCH5 is the name of the Libre Computer board ALL-H3-CC.
BoardLibretechAllH3CCH5 = "libretech_all_h3_cc_h5"
// BoardRPi4 is the name of the Raspberry Pi 4 Model B.
BoardRPi4 = "rpi_4"
// BoardRPiGeneric is the name of the Raspberry Pi Compute Module 4.
BoardRPiGeneric = "rpi_generic"
// BoardBananaPiM64 is the name of the Banana Pi M64.
BoardBananaPiM64 = "bananapi_m64"
// BoardPine64 is the name of the Pine64.
BoardPine64 = "pine64"
// BoardJetsonNano is the name of the Jetson Nano.
BoardJetsonNano = "jetson_nano"
// BoardRock64 is the name of the Rock64.
BoardRock64 = "rock64"
// BoardRockpi4 is the name of the Radxa Rock pi 4 revisions A and B.
BoardRockpi4 = "rockpi_4"
// BoardRockpi4c is the name of the Radxa Rock pi 4 revision C.
BoardRockpi4c = "rockpi_4c"
// BoardNanoPiR4S is the name of the Friendlyelec Nano Pi R4S.
BoardNanoPiR4S = "nanopi_r4s"
// KernelParamHostname is the kernel parameter name for specifying the
// hostname.
KernelParamHostname = "talos.hostname"
// KernelParamShutdown is the kernel parameter for specifying the
// shutdown type (halt/poweroff).
KernelParamShutdown = "talos.shutdown"
// KernelParamNetworkInterfaceIgnore is the kernel parameter for specifying network interfaces which should be ignored by talos.
KernelParamNetworkInterfaceIgnore = "talos.network.interface.ignore"
// KernelParamVlan is the kernel parameter for specifying vlan for the interface.
KernelParamVlan = "vlan"
// KernelParamBonding is the kernel parameter for specifying bonded network interfaces.
KernelParamBonding = "bond"
// KernelParamPanic is the kernel parameter name for specifying the time to wait until rebooting after kernel panic (0 disables reboot).
KernelParamPanic = "panic"
// KernelParamSideroLink is the kernel parameter name to specify SideroLink API endpoint.
KernelParamSideroLink = "siderolink.api"
// KernelParamEquinixMetalEvents is the kernel parameter name to specify the Equinix Metal phone home endpoint.
// This param is injected by Equinix Metal and depends on the device ID and datacenter.
KernelParamEquinixMetalEvents = "em.events_url"
// NewRoot is the path where the switchroot target is mounted.
NewRoot = "/root"
// ExtensionLayers is the path where the extensions layers are stored.
ExtensionLayers = "/layers"
// ExtensionsConfigFile is the extensions layers configuration file name in the initramfs.
ExtensionsConfigFile = "/extensions.yaml"
// ExtensionsRuntimeConfigFile extensions layers configuration file name in the rootfs.
ExtensionsRuntimeConfigFile = "/etc/extensions.yaml"
// EFIPartitionLabel is the label of the partition to use for mounting at
// the boot path.
EFIPartitionLabel = "EFI"
// EFIMountPoint is the label of the partition to use for mounting at
// the boot path.
EFIMountPoint = BootMountPoint + "/EFI"
// BIOSGrubPartitionLabel is the label of the partition used by grub's second
// stage bootloader.
BIOSGrubPartitionLabel = "BIOS"
// MetaPartitionLabel is the label of the meta partition.
MetaPartitionLabel = "META"
// StatePartitionLabel is the label of the state partition.
StatePartitionLabel = "STATE"
// StateMountPoint is the label of the partition to use for mounting at
// the state path.
StateMountPoint = "/system/state"
// BootPartitionLabel is the label of the partition to use for mounting at
// the boot path.
BootPartitionLabel = "BOOT"
// BootMountPoint is the label of the partition to use for mounting at
// the boot path.
BootMountPoint = "/boot"
// EphemeralPartitionLabel is the label of the partition to use for
// mounting at the data path.
EphemeralPartitionLabel = "EPHEMERAL"
// EphemeralMountPoint is the label of the partition to use for mounting at
// the data path.
EphemeralMountPoint = "/var"
// RootMountPoint is the label of the partition to use for mounting at
// the root path.
RootMountPoint = "/"
// ISOFilesystemLabel is the label of the ISO file system for the Talos
// installer.
ISOFilesystemLabel = "TALOS"
// PATH defines all locations where executables are stored.
PATH = "/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:" + cni.DefaultCNIDir
// KubernetesDefaultCertificateValidityDuration specifies default certificate duration for Kubernetes generated certificates.
KubernetesDefaultCertificateValidityDuration = time.Hour * 24 * 365
// DefaultCertificatesDir is the path the Kubernetes PKI directory.
DefaultCertificatesDir = "/etc/kubernetes/pki"
// KubernetesCACert is the path to the root CA certificate.
KubernetesCACert = DefaultCertificatesDir + "/" + "ca.crt"
// EtcdCACert is the path to the etcd CA certificate.
EtcdCACert = EtcdPKIPath + "/" + "ca.crt"
// EtcdCAKey is the path to the etcd CA private key.
EtcdCAKey = EtcdPKIPath + "/" + "ca.key"
// EtcdCert is the path to the etcd server certificate.
EtcdCert = EtcdPKIPath + "/" + "server.crt"
// EtcdKey is the path to the etcd server private key.
EtcdKey = EtcdPKIPath + "/" + "server.key"
// EtcdPeerCert is the path to the etcd peer certificate.
EtcdPeerCert = EtcdPKIPath + "/" + "peer.crt"
// EtcdPeerKey is the path to the etcd peer private key.
EtcdPeerKey = EtcdPKIPath + "/" + "peer.key"
// EtcdAdminCert is the path to the talos client certificate.
EtcdAdminCert = EtcdPKIPath + "/" + "admin.crt"
// EtcdAdminKey is the path to the talos client private key.
EtcdAdminKey = EtcdPKIPath + "/" + "admin.key"
// EtcdClientPort defines the port etcd listen on for client traffic.
EtcdClientPort = 2379
// EtcdPeerPort defines the port etcd listens on for peer traffic.
EtcdPeerPort = 2380
// KubernetesAdminCertCommonName defines CN property of Kubernetes admin certificate.
KubernetesAdminCertCommonName = "admin"
// KubernetesTalosAdminCertCommonName defines CN property of Kubernetes admin certificate used by Talos itself.
KubernetesTalosAdminCertCommonName = "talos:admin"
// KubernetesAdminCertOrganization defines Organization values of Kubernetes admin certificate.
KubernetesAdminCertOrganization = "system:masters"
// KubernetesAPIServerKubeletClientCommonName defines CN property of Kubernetes API server certificate to access kubelet API.
KubernetesAPIServerKubeletClientCommonName = "apiserver-kubelet-client"
// KubernetesControllerManagerOrganization defines Organization value of kube-controller-manager client certificate.
KubernetesControllerManagerOrganization = "system:kube-controller-manager"
// KubernetesSchedulerOrganization defines Organization value of kube-scheduler client certificate.
KubernetesSchedulerOrganization = "system:kube-scheduler"
// KubernetesAdminCertDefaultLifetime defines default lifetime for Kubernetes generated admin certificate.
KubernetesAdminCertDefaultLifetime = 365 * 24 * time.Hour
// KubebernetesStaticSecretsDir defines ephemeral directory which contains rendered secrets for controlplane components.
KubebernetesStaticSecretsDir = "/system/secrets/kubernetes"
// KubebernetesStaticConfigDir defines ephemeral directory which contains rendered configs for controlplane components.
KubebernetesStaticConfigDir = "/system/config/kubernetes"
// KubernetesAuditLogDir defines the ephemeral directory where the kube-apiserver will store its audit logs.
KubernetesAuditLogDir = EphemeralMountPoint + "/" + "log" + "/" + "audit" + "/" + "kube"
// KubernetesAPIServerSecretsDir defines directory with kube-apiserver secrets.
KubernetesAPIServerSecretsDir = KubebernetesStaticSecretsDir + "/" + "kube-apiserver"
// KubernetesAPIServerConfigDir defines directory with kube-apiserver configs.
KubernetesAPIServerConfigDir = KubebernetesStaticConfigDir + "/" + "kube-apiserver"
// KubernetesControllerManagerSecretsDir defines ephemeral directory with kube-controller-manager secrets.
KubernetesControllerManagerSecretsDir = KubebernetesStaticSecretsDir + "/" + "kube-controller-manager"
// KubernetesSchedulerSecretsDir defines ephemeral directory with kube-scheduler secrets.
KubernetesSchedulerSecretsDir = KubebernetesStaticSecretsDir + "/" + "kube-scheduler"
// KubernetesAPIServerRunUser defines UID to the API Server.
KubernetesAPIServerRunUser = 65534
// KubernetesAPIServerRunGroup defines GID to run the API Server.
KubernetesAPIServerRunGroup = 65534
// KubernetesControllerManagerRunUser defines UID to the Controller Manager.
KubernetesControllerManagerRunUser = 65535
// KubernetesControllerManagerRunGroup defines GID to run the Controller Manager.
KubernetesControllerManagerRunGroup = 65535
// KubernetesSchedulerRunUser defines UID to the Scheduler.
KubernetesSchedulerRunUser = 65536
// KubernetesSchedulerRunGroup defines GID to run the Scheduler.
KubernetesSchedulerRunGroup = 65536
// KubeletBootstrapKubeconfig is the path to the kubeconfig required to
// bootstrap the kubelet.
KubeletBootstrapKubeconfig = "/etc/kubernetes/bootstrap-kubeconfig"
// KubeletPort is the kubelet port for secure API.
KubeletPort = 10250
// KubeletOOMScoreAdj oom_score_adj config.
KubeletOOMScoreAdj = -450
// KubeletPKIDir is the path to the directory where kubelet stores issued certificates and keys.
KubeletPKIDir = "/var/lib/kubelet/pki"
// SystemKubeletPKIDir is the path to the directory where Talos copies kubelet issued certificates and keys.
SystemKubeletPKIDir = "/system/secrets/kubelet"
// KubeletShutdownGracePeriod is the kubelet shutdown grace period.
KubeletShutdownGracePeriod = 30 * time.Second
// KubeletShutdownGracePeriodCriticalPods is the kubelet shutdown grace period for critical pods.
//
// Should be less than KubeletShutdownGracePeriod.
KubeletShutdownGracePeriodCriticalPods = 10 * time.Second
// SeccompProfilesDirectory is the path to the directory where user provided seccomp profiles are mounted inside Kubelet.
SeccompProfilesDirectory = "/var/lib/kubelet/seccomp/profiles"
// DefaultKubernetesVersion is the default target version of the control plane.
// renovate: datasource=github-releases depName=kubernetes/kubernetes
DefaultKubernetesVersion = "1.27.0-beta.0"
// DefaultControlPlanePort is the default port to use for the control plane.
DefaultControlPlanePort = 6443
// KubeletImage is the enforced kubelet image to use.
KubeletImage = "ghcr.io/siderolabs/kubelet"
// KubeProxyImage is the enforced kube-proxy image to use for the control plane.
KubeProxyImage = "registry.k8s.io/kube-proxy"
// KubernetesAPIServerImage is the enforced apiserver image to use for the control plane.
KubernetesAPIServerImage = "registry.k8s.io/kube-apiserver"
// KubernetesControllerManagerImage is the enforced controllermanager image to use for the control plane.
KubernetesControllerManagerImage = "registry.k8s.io/kube-controller-manager"
// KubernetesProxyImage is the enforced proxy image to use for the control plane.
KubernetesProxyImage = "registry.k8s.io/kube-proxy"
// KubernetesSchedulerImage is the enforced scheduler image to use for the control plane.
KubernetesSchedulerImage = "registry.k8s.io/kube-scheduler"
// CoreDNSImage is the enforced CoreDNS image to use.
CoreDNSImage = "docker.io/coredns/coredns"
// DefaultCoreDNSVersion is the default version for the CoreDNS.
// renovate: datasource=github-releases depName=coredns/coredns
DefaultCoreDNSVersion = "1.10.1"
// LabelNodeRoleMaster is the node label required by a control plane node.
LabelNodeRoleMaster = "node-role.kubernetes.io/master"
// LabelNodeRoleControlPlane is the node label required by a control plane node.
LabelNodeRoleControlPlane = "node-role.kubernetes.io/control-plane"
// ManifestsDirectory is the directory that contains all static manifests.
ManifestsDirectory = "/etc/kubernetes/manifests"
// TalosManifestPrefix is the prefix for static pod files created in ManifestsDirectory by Talos.
TalosManifestPrefix = "talos-"
// KubeletKubeconfig is the generated kubeconfig for kubelet.
KubeletKubeconfig = "/etc/kubernetes/kubeconfig-kubelet"
// KubeletSystemReservedCPU cpu system reservation value for kubelet kubeconfig.
KubeletSystemReservedCPU = "50m"
// KubeletSystemReservedMemory memory system reservation value for kubelet kubeconfig.
KubeletSystemReservedMemory = "192Mi"
// KubeletSystemReservedPid pid system reservation value for kubelet kubeconfig.
KubeletSystemReservedPid = "100"
// KubeletSystemReservedEphemeralStorage ephemeral-storage system reservation value for kubelet kubeconfig.
KubeletSystemReservedEphemeralStorage = "256Mi"
// DefaultEtcdVersion is the default target version of etcd.
// renovate: datasource=github-releases depName=etcd-io/etcd
DefaultEtcdVersion = "v3.5.7"
// EtcdRootTalosKey is the root etcd key for Talos-specific storage.
EtcdRootTalosKey = "talos:v1"
// EtcdTalosEtcdUpgradeMutex is the etcd mutex prefix to be used to set an etcd upgrade lock.
EtcdTalosEtcdUpgradeMutex = EtcdRootTalosKey + ":etcdUpgradeMutex"
// EtcdTalosManifestApplyMutex is the etcd mutex prefix used by manifest apply controller.
EtcdTalosManifestApplyMutex = EtcdRootTalosKey + ":manifestApplyMutex"
// EtcdTalosServiceAccountCRDControllerMutex is the etcd mutex prefix used by Talos ServiceAccount crd controller.
EtcdTalosServiceAccountCRDControllerMutex = EtcdRootTalosKey + ":serviceAccountCRDController"
// EtcdImage is the reposistory for the etcd image.
EtcdImage = "gcr.io/etcd-development/etcd"
// EtcdPKIPath is the path to the etcd PKI directory.
EtcdPKIPath = "/system/secrets/etcd"
// EtcdDataPath is the path where etcd stores its' data.
EtcdDataPath = "/var/lib/etcd"
// EtcdRecoverySnapshotPath is the path where etcd snapshot is uploaded for recovery.
EtcdRecoverySnapshotPath = "/var/lib/etcd.snapshot"
// EtcdUserID is the user ID for the etcd process.
EtcdUserID = 60
// ConfigPath is the path to the downloaded config.
ConfigPath = StateMountPoint + "/config.yaml"
// ConfigTryTimeout is the timeout of the config apply in try mode.
ConfigTryTimeout = time.Minute
// MetalConfigISOLabel is the volume label for ISO based configuration.
MetalConfigISOLabel = "metal-iso"
// ConfigGuestInfo is the name of the VMware guestinfo config strategy.
ConfigGuestInfo = "guestinfo"
// VMwareGuestInfoConfigKey is the guestinfo key used to provide a config file.
VMwareGuestInfoConfigKey = "talos.config"
// VMwareGuestInfoFallbackKey is the fallback guestinfo key used to provide a config file.
VMwareGuestInfoFallbackKey = "userdata"
// VMwareGuestInfoMetadataKey is the guestinfo key used to provide metadata.
VMwareGuestInfoMetadataKey = "metadata"
// VMwareGuestInfoOvfEnvKey is the guestinfo key used to provide the OVF environment.
VMwareGuestInfoOvfEnvKey = "ovfenv"
// AuditPolicyPath is the path to the audit-policy.yaml relative to initramfs.
AuditPolicyPath = "/etc/kubernetes/audit-policy.yaml"
// EncryptionConfigPath is the path to the EncryptionConfig relative to initramfs.
EncryptionConfigPath = "/etc/kubernetes/encryptionconfig.yaml"
// EncryptionConfigRootfsPath is the path to the EncryptionConfig relative to rootfs.
EncryptionConfigRootfsPath = "/etc/kubernetes/encryptionconfig.yaml"
// ApidPort is the port for the apid service.
ApidPort = 50000
// ApidUserID is the user ID for apid.
ApidUserID = 50
// DashboardUserID is the user ID for dashboard.
// We use the same user ID as apid so that the dashboard can write to the machined unix socket.
DashboardUserID = ApidUserID
// TrustdPort is the port for the trustd service.
TrustdPort = 50001
// TrustdUserID is the user ID for trustd.
TrustdUserID = 51
// DefaultContainerdVersion is the default container runtime version.
DefaultContainerdVersion = "1.6.19"
// SystemContainerdNamespace is the Containerd namespace for Talos services.
SystemContainerdNamespace = "system"
// SystemContainerdAddress is the path to the system containerd socket.
SystemContainerdAddress = SystemRunPath + "/containerd/containerd.sock"
// CRIContainerdAddress is the path to the CRI containerd socket address.
CRIContainerdAddress = "/run/containerd/containerd.sock"
// CRIContainerdConfig is the path to the config for the containerd instance that provides the CRI.
CRIContainerdConfig = "/etc/cri/containerd.toml"
// CRIConfdPath is the path to the directory providing parts of CRI plugin configuration.
CRIConfdPath = "/etc/cri/conf.d"
// CRIConfig is the path to the CRI merged configuration file relative to /etc.
CRIConfig = "cri/conf.d/cri.toml"
// CRIRegistryConfigPart is the path to the CRI generated registry configuration relative to /etc.
CRIRegistryConfigPart = "cri/conf.d/01-registries.part"
// CRICustomizationConfigPart is the path to the CRI generated registry configuration relative to /etc.
CRICustomizationConfigPart = "cri/conf.d/20-customization.part"
// TalosConfigEnvVar is the environment variable for setting the Talos configuration file path.
TalosConfigEnvVar = "TALOSCONFIG"
// APISocketPath is the path to file socket of apid.
APISocketPath = SystemRunPath + "/apid/apid.sock"
// APIRuntimeSocketPath is the path to file socket of runtime server for apid.
APIRuntimeSocketPath = SystemRunPath + "/apid/runtime.sock"
// TrustdRuntimeSocketPath is the path to file socket of runtime server for trustd.
TrustdRuntimeSocketPath = SystemRunPath + "/trustd/runtime.sock"
// MachineSocketPath is the path to file socket of machine API.
MachineSocketPath = SystemRunPath + "/machined/machine.sock"
// NetworkSocketPath is the path to file socket of network API.
NetworkSocketPath = SystemRunPath + "/networkd/networkd.sock"
// ArchVariable is replaced automatically by the target cluster arch.
ArchVariable = "${ARCH}"
// KernelAsset defines a well known name for our kernel filename.
KernelAsset = "vmlinuz"
// KernelAssetWithArch defines a well known name for our kernel filename with arch variable.
KernelAssetWithArch = "vmlinuz-" + ArchVariable
// KernelAssetPath is the path to the kernel on disk.
KernelAssetPath = "/usr/install/%s/" + KernelAsset
// InitramfsAsset defines a well known name for our initramfs filename.
InitramfsAsset = "initramfs.xz"
// InitramfsAssetWithArch defines a well known name for our initramfs filename with arch variable.
InitramfsAssetWithArch = "initramfs-" + ArchVariable + ".xz"
// InitramfsAssetPath is the path to the initramfs on disk.
InitramfsAssetPath = "/usr/install/%s/" + InitramfsAsset
// RootfsAsset defines a well known name for our rootfs filename.
RootfsAsset = "rootfs.sqsh"
// DefaultCertificateValidityDuration is the default duration for a certificate.
DefaultCertificateValidityDuration = x509.DefaultCertificateValidityDuration
// SystemPath is the path to write temporary runtime system related files
// and directories.
SystemPath = "/system"
// VarSystemOverlaysPath is the path where overlay mounts are created.
VarSystemOverlaysPath = "/var/system/overlays"
// SystemRunPath is the path to the system run directory.
SystemRunPath = SystemPath + "/run"
// SystemVarPath is the path to the system var directory.
SystemVarPath = SystemPath + "/var"
// SystemEtcPath is the path to the system etc directory.
SystemEtcPath = SystemPath + "/etc"
// SystemLibexecPath is the path to the system libexec directory.
SystemLibexecPath = SystemPath + "/libexec"
// SystemExtensionsPath is the path to the system extensions directory.
SystemExtensionsPath = SystemPath + "/extensions"
// SystemOverlaysPath is the path to the system overlay directory.
SystemOverlaysPath = SystemPath + "/overlays"
// CgroupMountPath is the default mount path for unified cgroupsv2 setup.
CgroupMountPath = "/sys/fs/cgroup"
// CgroupInit is the cgroup name for init process.
CgroupInit = "/init"
// CgroupInitReservedMemory is the hard memory protection for the init process.
CgroupInitReservedMemory = 96 * 1024 * 1024
// CgroupSystem is the cgroup name for system processes.
CgroupSystem = "/system"
// CgroupSystemReservedMemory is the hard memory protection for the system processes.
CgroupSystemReservedMemory = 96 * 1024 * 1024
// CgroupSystemRuntime is the cgroup name for containerd runtime processes.
CgroupSystemRuntime = CgroupSystem + "/runtime"
// CgroupExtensions is the cgroup name for system extension processes.
CgroupExtensions = CgroupSystem + "/extensions"
// CgroupDashboard is the cgroup name for dashboard process.
CgroupDashboard = CgroupSystem + "/dashboard"
// CgroupPodRuntime is the cgroup name for kubernetes containerd runtime processes.
CgroupPodRuntime = "/podruntime/runtime"
// CgroupPodRuntimeReservedMemory is the hard memory protection for the cri runtime processes.
CgroupPodRuntimeReservedMemory = 128 * 1024 * 1024
// CgroupKubelet is the cgroup name for kubelet process.
CgroupKubelet = "/podruntime/kubelet"
// CgroupKubeletReservedMemory is the hard memory protection for the kubelet processes.
CgroupKubeletReservedMemory = 64 * 1024 * 1024
// CgroupDashboardReservedMemory is the hard memory protection for the dashboard process.
CgroupDashboardReservedMemory = 85 * 1024 * 1024
// CgroupDashboardLowMemory is the low memory value for the dashboard process.
CgroupDashboardLowMemory = 100 * 1024 * 1024
// FlannelCNI is the string to use Tanos-managed Flannel CNI (default).
FlannelCNI = "flannel"
// CustomCNI is the string to use custom CNI managed by Tanos with extra manifests.
CustomCNI = "custom"
// NoneCNI is the string to indicate that CNI will not be managed by Talos.
NoneCNI = "none"
// DefaultIPv4PodNet is the IPv4 network to be used for kubernetes Pods.
DefaultIPv4PodNet = "10.244.0.0/16"
// DefaultIPv4ServiceNet is the IPv4 network to be used for kubernetes Services.
DefaultIPv4ServiceNet = "10.96.0.0/12"
// DefaultIPv6PodNet is the IPv6 network to be used for kubernetes Pods.
DefaultIPv6PodNet = "fc00:db8:10::/56"
// DefaultIPv6ServiceNet is the IPv6 network to be used for kubernetes Services.
DefaultIPv6ServiceNet = "fc00:db8:20::/112"
// DefaultDNSDomain is the default DNS domain.
DefaultDNSDomain = "cluster.local"
// ConfigLoadTimeout is the timeout to wait for the config to be loaded from an external source.
ConfigLoadTimeout = 3 * time.Minute
// BootTimeout is the timeout to run all services.
BootTimeout = 70 * time.Minute
// FailurePauseTimeout is the timeout for the sequencer failures which can be fixed by updating the machine config.
FailurePauseTimeout = 35 * time.Minute
// EtcdJoinTimeout is the timeout for etcd to join the existing cluster.
//
// BootTimeout should be higher than EtcdJoinTimeout.
EtcdJoinTimeout = 30 * time.Minute
// NodeReadyTimeout is the timeout to wait for the node to be ready (CNI to be running).
// For bootstrap API, this includes time to run bootstrap.
NodeReadyTimeout = BootTimeout
// AnnotationCordonedKey is the annotation key for the nodes cordoned by Talos.
AnnotationCordonedKey = "talos.dev/cordoned"
// AnnotationCordonedValue is the annotation key for the nodes cordoned by Talos.
AnnotationCordonedValue = "true"
// AnnotationStaticPodSecretsVersion is the annotation key for the static pod secret version.
AnnotationStaticPodSecretsVersion = "talos.dev/secrets-version"
// AnnotationStaticPodConfigVersion is the annotation key for the static pod config version.
AnnotationStaticPodConfigVersion = "talos.dev/config-version"
// AnnotationStaticPodConfigFileVersion is the annotation key for the static pod configuration file version.
AnnotationStaticPodConfigFileVersion = "talos.dev/config-file-version"
// AnnotationOwnedLabels is the annotation key for the list of node labels owned by Talos.
AnnotationOwnedLabels = "talos.dev/owned-labels"
// DefaultNTPServer is the NTP server to use if not configured explicitly.
//
// TODO: Once we get naming sorted we need to apply for a project specific address
// https://manage.ntppool.org/manage/vendor
DefaultNTPServer = "pool.ntp.org"
// DefaultPrimaryResolver is the default primary DNS server.
DefaultPrimaryResolver = "1.1.1.1"
// DefaultSecondaryResolver is the default secondary DNS server.
DefaultSecondaryResolver = "8.8.8.8"
// DefaultClusterIDSize is the default size in bytes for the cluster ID token.
DefaultClusterIDSize = 32
// DefaultClusterSecretSize is the default size in bytes for the cluster secret.
DefaultClusterSecretSize = 32
// DefaultNodeIdentitySize is the default size in bytes for the node ID.
DefaultNodeIdentitySize = 32
// NodeIdentityFilename is the filename to cache node identity across reboots.
NodeIdentityFilename = "node-identity.yaml"
// DefaultDiscoveryServiceEndpoint is the default endpoint for Talos discovery service.
DefaultDiscoveryServiceEndpoint = "https://discovery.talos.dev/"
// KubeSpanIdentityFilename is the filename to cache KubeSpan identity across reboots.
KubeSpanIdentityFilename = "kubespan-identity.yaml"
// KubeSpanDefaultPort is the default Wireguard listening port for incoming connections.
KubeSpanDefaultPort = 51820
// KubeSpanDefaultRoutingTable is the default routing table for KubeSpan LAN targets.
//
// This specifies the routing table which will be used for Wireguard-available destinations.
KubeSpanDefaultRoutingTable = 180
// KubeSpanDefaultFirewallMark is the default firewall mark to use for Wireguard encrypted egress packets.
//
// Normal Wireguard configurations will NOT use this firewall mark.
KubeSpanDefaultFirewallMark = 0x20
// KubeSpanDefaultForceFirewallMark is the default firewall mark to use for packets destined to IPs serviced by KubeSpan.
//
// It is used to signal that matching packets should be forced into the Wireguard interface.
KubeSpanDefaultForceFirewallMark = 0x40
// KubeSpanDefaultFirewallMask is the mask applied to the packet mark when matching and setting the mark.
//
// This mask signals the bits of the firewall mark used by KubeSpan.
KubeSpanDefaultFirewallMask = KubeSpanDefaultFirewallMark | KubeSpanDefaultForceFirewallMark
// KubeSpanDefaultPeerKeepalive is the interval at which Wireguard Peer Keepalives should be sent.
KubeSpanDefaultPeerKeepalive = 25 * time.Second
// NetworkSelfIPsAnnotation is the node annotation used to list the (comma-separated) IP addresses of the host, as discovered by Talos tooling.
NetworkSelfIPsAnnotation = "networking.talos.dev/self-ips"
// ClusterNodeIDAnnotation is the node annotation used to represent node ID.
ClusterNodeIDAnnotation = "cluster.talos.dev/node-id"
// KubeSpanIPAnnotation is the node annotation to be used for indicating the Wireguard IP of the node.
KubeSpanIPAnnotation = "networking.talos.dev/kubespan-ip"
// KubeSpanPublicKeyAnnotation is the node annotation to be used for indicating the Wireguard Public Key of the node.
KubeSpanPublicKeyAnnotation = "networking.talos.dev/kubespan-public-key"
// KubeSpanAssignedPrefixesAnnotation is the node annotation use to list the (comma-separated) set of IP prefixes for which the annotated node should be responsible.
KubeSpanAssignedPrefixesAnnotation = "networking.talos.dev/assigned-prefixes"
// KubeSpanKnownEndpointsAnnotation is the node annotation used to list the (comma-separated) known-good Wireguard endpoints for the node, as seen by other peers.
KubeSpanKnownEndpointsAnnotation = "networking.talos.dev/kubespan-endpoints"
// KubeSpanLinkName is the link name for the KubeSpan Wireguard interface.
KubeSpanLinkName = "kubespan"
// KubeSpanLinkMTU is the default link MTU size for the KubeSpan Wireguard interface.
KubeSpanLinkMTU = 1420
// KubeSpanLinkMinimumMTU is the minimum link MTU size for the KubeSpan Wireguard interface.
//
// This is the minimum MTU size for the Wireguard interface with IPv6 enabled.
// See: https://lore.kernel.org/wireguard/20190321033638.1ff82682@natsu/t/
KubeSpanLinkMinimumMTU = 1280
// UdevDir is the path to the udev directory.
UdevDir = "/usr/etc/udev"
// UdevRulesPath rules file path.
UdevRulesPath = UdevDir + "/" + "rules.d/99-talos.rules"
// LoggingFormatJSONLines represents "JSON lines" logging format.
LoggingFormatJSONLines = "json_lines"
// SideroLinkName is the interface name for SideroLink.
SideroLinkName = "siderolink"
// SideroLinkDefaultPeerKeepalive is the interval at which Wireguard Peer Keepalives should be sent.
SideroLinkDefaultPeerKeepalive = 25 * time.Second
// PlatformNetworkConfigFilename is the filename to cache platform network configuration reboots.
PlatformNetworkConfigFilename = "platform-network.yaml"
// FirmwarePath is the path to the standard Linux firmware location.
FirmwarePath = "/lib/firmware"
// ExtensionServicesConfigPath is the directory path which contains configuration files of extension services.
//
// See pkg/machinery/extensions/services for the file format.
ExtensionServicesConfigPath = "/usr/local/etc/containers"
// ExtensionServicesRootfsPath is the path to the extracted rootfs files of extension services.
ExtensionServicesRootfsPath = "/usr/local/lib/containers"
// DBusServiceSocketPath is the path to the D-Bus socket for the logind mock to connect to.
DBusServiceSocketPath = SystemRunPath + "/dbus/service.socket"
// DBusClientSocketPath is the path to the D-Bus socket for the kubelet to connect to.
DBusClientSocketPath = "/run/dbus/system_bus_socket"
// GoVersion is the version of Go compiler this release was built with.
GoVersion = "go1.20.2"
// KubernetesTalosAPIServiceName is the name of the Kubernetes service to access Talos API.
KubernetesTalosAPIServiceName = "talos"
// KubernetesTalosAPIServiceNamespace is the namespace of the Kubernetes service to access Talos API.
KubernetesTalosAPIServiceNamespace = "default"
// TalosDir is the default name of the Talos directory under user home.
TalosDir = ".talos"
// TalosconfigFilename is the file name of Talosconfig under TalosDir or under ServiceAccountMountPath inside a pod.
TalosconfigFilename = "config"
// KubernetesTalosProvider is the name of the Talos provider as a Kubernetes label.
KubernetesTalosProvider = "talos.dev"
// ServiceAccountResourceGroup is the group name of the Talos service account CRD.
ServiceAccountResourceGroup = "talos.dev"
// ServiceAccountResourceVersion is the version of the Talos service account CRD.
ServiceAccountResourceVersion = "v1alpha1"
// ServiceAccountResourceKind is the kind name of the Talos service account CRD.
ServiceAccountResourceKind = "ServiceAccount"
// ServiceAccountResourceSingular is the singular name of the Talos service account CRD.
ServiceAccountResourceSingular = "serviceaccount"
// ServiceAccountResourceShortName is the short name of the service account CRD.
ServiceAccountResourceShortName = "tsa"
// ServiceAccountResourcePlural is the plural name of the service account CRD.
ServiceAccountResourcePlural = ServiceAccountResourceSingular + "s"
// ServiceAccountMountPath is the path of the directory in which the Talos service account secrets are mounted.
ServiceAccountMountPath = "/var/run/secrets/talos.dev"
// DefaultTrustedCAFile is the default path to the trusted CA file.
DefaultTrustedCAFile = "/etc/ssl/certs/ca-certificates"
// MachinedMaxProcs is the maximum number of GOMAXPROCS for machined.
MachinedMaxProcs = 4
// ApidMaxProcs is the maximum number of GOMAXPROCS for apid.
ApidMaxProcs = 2
// TrustdMaxProcs is the maximum number of GOMAXPROCS for trustd.
TrustdMaxProcs = 2
// DashboardMaxProcs is the maximum number of GOMAXPROCS for dashboard.
DashboardMaxProcs = 2
// APIAuthzRoleMetadataKey is the gRPC metadata key used to submit a role with os:impersonator.
APIAuthzRoleMetadataKey = "talos-role"
// DashboardTTY is the number of the TTY device (/dev/ttyN) for dashboard.
DashboardTTY = 2
// FlannelVersion is the version of flannel to use.
FlannelVersion = "v0.21.3"
)
// See https://linux.die.net/man/3/klogctl
//
//nolint:stylecheck,revive
const (
// SYSLOG_ACTION_SIZE_BUFFER is a named type argument to klogctl.
//nolint:golint
SYSLOG_ACTION_SIZE_BUFFER = 10
// SYSLOG_ACTION_READ_ALL is a named type argument to klogctl.
//nolint:golint
SYSLOG_ACTION_READ_ALL = 3
)
// names of variable that can be substituted in the talos.config kernel parameter.
const (
UUIDKey = "uuid"
SerialNumberKey = "serial"
HostnameKey = "hostname"
MacKey = "mac"
)
// Overlays is the set of paths to create overlay mounts for.
var Overlays = []string{
"/etc/cni",
"/etc/kubernetes",
"/usr/libexec/kubernetes",
"/opt",
}
// DefaultDroppedCapabilities is the default set of capabilities to drop.
var DefaultDroppedCapabilities = map[string]struct{}{
"cap_sys_boot": {},
"cap_sys_module": {},
}
// UdevdDroppedCapabilities is the set of capabilities to drop for udevd.
var UdevdDroppedCapabilities = map[string]struct{}{
"cap_sys_boot": {},
}