version: v1alpha1 # Indicates the schema used to decode the contents. debug: false # Enable verbose logging to the console. persist: true # Provides machine specific configuration options. machine: type: worker # Defines the role of the machine within the cluster. token: ubp3st.gmb0565erkwo722t # The `token` is used by a machine to join the PKI of the cluster. # The root certificate authority of the PKI. ca: crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJQekNCOHFBREFnRUNBaEVBc3QvY3BtNEliZnhzS3d3VGxHMFNtREFGQmdNclpYQXdFREVPTUF3R0ExVUUKQ2hNRmRHRnNiM013SGhjTk1qUXhNakEwTVRneU1qQTFXaGNOTXpReE1qQXlNVGd5TWpBMVdqQVFNUTR3REFZRApWUVFLRXdWMFlXeHZjekFxTUFVR0F5dGxjQU1oQU9aVVU3Vzh3OXcwR0l4cmVxVitNQ3JrUENmQS9keWdJMGtVCkJDQTkyTjhNbzJFd1h6QU9CZ05WSFE4QkFmOEVCQU1DQW9Rd0hRWURWUjBsQkJZd0ZBWUlLd1lCQlFVSEF3RUcKQ0NzR0FRVUZCd01DTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3SFFZRFZSME9CQllFRksvei83WWVqamt0VFAwcgppcFFNa2hxK3hNU1pNQVVHQXl0bGNBTkJBTDNJTDk4b3NkeDVPTGpQeEZFcXRTK0NOeWhPS2RFMGU5S3ZnQi9VCmpaT3VEMWE3Zmx3Q1grTVVrdk1qMnBEUER1eTN1Tko5Ym41ZFdPMldmdWFwdEFrPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== key: "" # Extra certificate subject alternative names for the machine's certificate. certSANs: [] # # Uncomment this to enable SANs. # - 10.0.0.10 # - 172.16.0.10 # - 192.168.0.10 # Used to provide additional options to the kubelet. kubelet: image: ghcr.io/siderolabs/kubelet:v1.31.2 # The `image` field is an optional reference to an alternative kubelet image. # The `extraArgs` field is used to provide additional flags to the kubelet. extraArgs: rotate-server-certificates: "true" # The `extraMounts` field is used to add additional mounts to the kubelet container. extraMounts: - destination: /var/local/openebs # Destination is the absolute path where the mount will be placed in the container. type: bind # Type specifies the mount kind. source: /var/local/openebs # Source specifies the source path of the mount. # Options are fstab style mount options. options: - bind - rshared - rw defaultRuntimeSeccompProfileEnabled: true # Enable container runtime default Seccomp profile. disableManifestsDirectory: true # The `disableManifestsDirectory` field configures the kubelet to get static pod manifests from the /etc/kubernetes/manifests directory. # # The `ClusterDNS` field is an optional reference to an alternative kubelet clusterDNS ip list. # clusterDNS: # - 10.96.0.10 # - 169.254.2.53 # # The `extraConfig` field is used to provide kubelet configuration overrides. # extraConfig: # serverTLSBootstrap: true # # The `KubeletCredentialProviderConfig` field is used to provide kubelet credential configuration. # credentialProviderConfig: # apiVersion: kubelet.config.k8s.io/v1 # kind: CredentialProviderConfig # providers: # - apiVersion: credentialprovider.kubelet.k8s.io/v1 # defaultCacheDuration: 12h # matchImages: # - '*.dkr.ecr.*.amazonaws.com' # - '*.dkr.ecr.*.amazonaws.com.cn' # - '*.dkr.ecr-fips.*.amazonaws.com' # - '*.dkr.ecr.us-iso-east-1.c2s.ic.gov' # - '*.dkr.ecr.us-isob-east-1.sc2s.sgov.gov' # name: ecr-credential-provider # # The `nodeIP` field is used to configure `--node-ip` flag for the kubelet. # nodeIP: # # The `validSubnets` field configures the networks to pick kubelet node IP from. # validSubnets: # - 10.0.0.0/8 # - '!10.0.0.3/32' # - fdc7::/16 # Provides machine specific network configuration options. network: hostname: node00.balsillie.house # Used to statically set the hostname for the machine. # `interfaces` is used to define the network interface configuration. interfaces: - # Picks a network device using the selector. deviceSelector: hardwareAddr: f4:4d:30:6e:62:a7 # Device hardware address, supports matching by wildcard. # Assigns static IP addresses to the interface. addresses: - 192.168.1.15/24 # A list of routes associated with the interface. routes: - network: 0.0.0.0/0 # The route's network (destination). gateway: 192.168.1.11 # The route's gateway (if empty, creates link scope route). dhcp: false # Indicates if DHCP should be used to configure the interface. # # The interface name. # interface: enp0s3 # # Bond specific options. # bond: # # The interfaces that make up the bond. # interfaces: # - enp2s0 # - enp2s1 # # Picks a network device using the selector. # deviceSelectors: # - busPath: 00:* # PCI, USB bus prefix, supports matching by wildcard. # - hardwareAddr: '*:f0:ab' # Device hardware address, supports matching by wildcard. # driver: virtio # Kernel driver, supports matching by wildcard. # mode: 802.3ad # A bond option. # lacpRate: fast # A bond option. # # Bridge specific options. # bridge: # # The interfaces that make up the bridge. # interfaces: # - enxda4042ca9a51 # - enxae2a6774c259 # # A bridge option. # stp: # enabled: true # Whether Spanning Tree Protocol (STP) is enabled. # # DHCP specific options. # dhcpOptions: # routeMetric: 1024 # The priority of all routes received via DHCP. # # Wireguard specific configuration. # # wireguard server example # wireguard: # privateKey: ABCDEF... # Specifies a private key configuration (base64 encoded). # listenPort: 51111 # Specifies a device's listening port. # # Specifies a list of peer configurations to apply to a device. # peers: # - publicKey: ABCDEF... # Specifies the public key of this peer. # endpoint: 192.168.1.3 # Specifies the endpoint of this peer entry. # # AllowedIPs specifies a list of allowed IP addresses in CIDR notation for this peer. # allowedIPs: # - 192.168.1.0/24 # # wireguard peer example # wireguard: # privateKey: ABCDEF... # Specifies a private key configuration (base64 encoded). # # Specifies a list of peer configurations to apply to a device. # peers: # - publicKey: ABCDEF... # Specifies the public key of this peer. # endpoint: 192.168.1.2:51822 # Specifies the endpoint of this peer entry. # persistentKeepaliveInterval: 10s # Specifies the persistent keepalive interval for this peer. # # AllowedIPs specifies a list of allowed IP addresses in CIDR notation for this peer. # allowedIPs: # - 192.168.1.0/24 # # Virtual (shared) IP address configuration. # # layer2 vip example # vip: # ip: 172.16.199.55 # Specifies the IP address to be used. # Used to statically set the nameservers for the machine. nameservers: - 192.168.1.11 # # Allows for extra entries to be added to the `/etc/hosts` file # extraHostEntries: # - ip: 192.168.1.100 # The IP of the host. # # The host alias. # aliases: # - example # - example.domain.tld # # Configures KubeSpan feature. # kubespan: # enabled: true # Enable the KubeSpan feature. # Used to provide instructions for installations. install: disk: /dev/sda # The disk used for installations. # Look up disk using disk attributes like model, size, serial and others. diskSelector: type: ssd # Disk Type. # # Disk size. # # Select a disk which size is equal to 4GB. # size: 4GB # # Select a disk which size is greater than 1TB. # size: '> 1TB' # # Select a disk which size is less or equal than 2TB. # size: <= 2TB # # Disk bus path. # busPath: /pci0000:00/0000:00:17.0/ata1/host0/target0:0:0/0:0:0:0 # busPath: /pci0000:00/* image: ghcr.io/siderolabs/installer:v1.8.3 # Allows for supplying the image used to perform the installation. wipe: true # Indicates if the installation disk should be wiped at installation time. legacyBIOSSupport: false # Indicates if MBR partition should be marked as bootable (active). # # Allows for supplying extra kernel args via the bootloader. # extraKernelArgs: # - talos.platform=metal # - reboot=k # # Allows for supplying additional system extension images to install on top of base Talos image. # extensions: # - image: ghcr.io/siderolabs/gvisor:20220117.0-v1.0.0 # System extension image. # Used to configure the machine's time settings. time: disabled: false # Indicates if the time service is disabled for the machine. # description: | servers: - 192.168.1.11 # Used to configure the machine's sysctls. sysctls: vm.nr_hugepages: "1024" # Used to configure the machine's container image registry mirrors. registries: {} # # Specifies mirror configuration for each registry host namespace. # mirrors: # ghcr.io: # # List of endpoints (URLs) for registry mirrors to use. # endpoints: # - https://registry.insecure # - https://ghcr.io/v2/ # # Specifies TLS & auth configuration for HTTPS image registries. # config: # registry.insecure: # # The TLS configuration for the registry. # tls: # insecureSkipVerify: true # Skip TLS server certificate verification (not recommended). # # # # Enable mutual TLS authentication with the registry. # # clientIdentity: # # crt: LS0tIEVYQU1QTEUgQ0VSVElGSUNBVEUgLS0t # # key: LS0tIEVYQU1QTEUgS0VZIC0tLQ== # # # # The auth configuration for this registry. # # auth: # # username: username # Optional registry authentication. # # password: password # Optional registry authentication. # Features describe individual Talos features that can be switched on or off. features: rbac: true # Enable role-based access control (RBAC). stableHostname: true # Enable stable default hostname. apidCheckExtKeyUsage: true # Enable checks for extended key usage of client certificates in apid. diskQuotaSupport: true # Enable XFS project quota support for EPHEMERAL partition and user disks. # KubePrism - local proxy/load balancer on defined port that will distribute kubePrism: enabled: false # Enable KubePrism support - will start local load balancing proxy. port: 7445 # KubePrism port. # Configures host DNS caching resolver. hostDNS: enabled: true # Enable host DNS caching resolver. forwardKubeDNSToHost: false # Use the host DNS resolver as upstream for Kubernetes CoreDNS pods. # # Configure Talos API access from Kubernetes pods. # kubernetesTalosAPIAccess: # enabled: true # Enable Talos API access from Kubernetes pods. # # The list of Talos API roles which can be granted for access from Kubernetes pods. # allowedRoles: # - os:reader # # The list of Kubernetes namespaces Talos API access is available from. # allowedKubernetesNamespaces: # - kube-system # Configures the node labels for the machine. nodeLabels: openebs.io/engine: mayastor # # Provides machine specific control plane configuration options. # # ControlPlane definition example. # controlPlane: # # Controller manager machine specific configuration options. # controllerManager: # disabled: false # Disable kube-controller-manager on the node. # # Scheduler machine specific configuration options. # scheduler: # disabled: true # Disable kube-scheduler on the node. # # Used to provide static pod definitions to be run by the kubelet directly bypassing the kube-apiserver. # # nginx static pod. # pods: # - apiVersion: v1 # kind: pod # metadata: # name: nginx # spec: # containers: # - image: nginx # name: nginx # # Used to partition, format and mount additional disks. # # MachineDisks list example. # disks: # - device: /dev/sdb # The name of the disk to use. # # A list of partitions to create on the disk. # partitions: # - mountpoint: /var/mnt/extra # Where to mount the partition. # # # # The size of partition: either bytes or human readable representation. If `size:` is omitted, the partition is sized to occupy the full disk. # # # Human readable representation. # # size: 100 MB # # # Precise value in bytes. # # size: 1073741824 # # Allows the addition of user specified files. # # MachineFiles usage example. # files: # - content: '...' # The contents of the file. # permissions: 0o666 # The file's permissions in octal. # path: /tmp/file.txt # The path of the file. # op: append # The operation to use # # The `env` field allows for the addition of environment variables. # # Environment variables definition examples. # env: # GRPC_GO_LOG_SEVERITY_LEVEL: info # GRPC_GO_LOG_VERBOSITY_LEVEL: "99" # https_proxy: http://SERVER:PORT/ # env: # GRPC_GO_LOG_SEVERITY_LEVEL: error # https_proxy: https://USERNAME:PASSWORD@SERVER:PORT/ # env: # https_proxy: http://DOMAIN\USERNAME:PASSWORD@SERVER:PORT/ # # Used to configure the machine's sysfs. # # MachineSysfs usage example. # sysfs: # devices.system.cpu.cpu0.cpufreq.scaling_governor: performance # # Machine system disk encryption configuration. # systemDiskEncryption: # # Ephemeral partition encryption. # ephemeral: # provider: luks2 # Encryption provider to use for the encryption. # # Defines the encryption keys generation and storage method. # keys: # - # Deterministically generated key from the node UUID and PartitionLabel. # nodeID: {} # slot: 0 # Key slot number for LUKS2 encryption. # # # # KMS managed encryption key. # # kms: # # endpoint: https://192.168.88.21:4443 # KMS endpoint to Seal/Unseal the key. # # # # Cipher kind to use for the encryption. Depends on the encryption provider. # # cipher: aes-xts-plain64 # # # Defines the encryption sector size. # # blockSize: 4096 # # # Additional --perf parameters for the LUKS2 encryption. # # options: # # - no_read_workqueue # # - no_write_workqueue # # Configures the udev system. # udev: # # List of udev rules to apply to the udev system # rules: # - SUBSYSTEM=="drm", KERNEL=="renderD*", GROUP="44", MODE="0660" # # Configures the logging system. # logging: # # Logging destination. # destinations: # - endpoint: tcp://1.2.3.4:12345 # Where to send logs. Supported protocols are "tcp" and "udp". # format: json_lines # Logs format. # # Configures the kernel. # kernel: # # Kernel modules to load. # modules: # - name: brtfs # Module name. # # Configures the seccomp profiles for the machine. # seccompProfiles: # - name: audit.json # The `name` field is used to provide the file name of the seccomp profile. # # The `value` field is used to provide the seccomp profile. # value: # defaultAction: SCMP_ACT_LOG # # Configures the node annotations for the machine. # # node annotations example. # nodeAnnotations: # customer.io/rack: r13a25 # # Configures the node taints for the machine. Effect is optional. # # node taints example. # nodeTaints: # exampleTaint: exampleTaintValue:NoSchedule # Provides cluster specific configuration options. cluster: id: OmdWk7fWVxSMf_1pjy_vG3LD_LpzBcJJ4gfyg7Du-1A= # Globally unique identifier for this cluster (base64 encoded random 32 bytes). secret: XVz/kRfKSE9ID7nb2QLW+DafhGHaLj+cXs9DlADVUQc= # Shared secret of cluster (base64 encoded random 32 bytes). # Provides control plane specific configuration options. controlPlane: endpoint: https://cp00.balsillie.house:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname. localAPIServerPort: 6443 # The port that the API server listens on internally. clusterName: cluster00.balsillie.house # Configures the cluster's name. # Provides cluster specific network configuration options. network: # The CNI used. cni: name: custom # Name of CNI to use. # URLs containing manifests to apply for the CNI. urls: - https://raw.githubusercontent.com/projectcalico/calico/v3.29.1/manifests/tigera-operator.yaml dnsDomain: cluster00.balsillie.house # The domain used by Kubernetes DNS. # The pod subnet CIDR. podSubnets: - 10.64.0.0/12 # The service subnet CIDR. serviceSubnets: - 10.80.0.0/12 token: cpn9u3.wyqt1zpotvuczv27 # The [bootstrap token](https://kubernetes.io/docs/reference/access-authn-authz/bootstrap-tokens/) used to join the cluster. # The base64 encoded root certificate authority used by Kubernetes. ca: crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJpekNDQVRDZ0F3SUJBZ0lSQVBoRnFMK05xZ3JWSnprWkJUOUliSUl3Q2dZSUtvWkl6ajBFQXdJd0ZURVQKTUJFR0ExVUVDaE1LYTNWaVpYSnVaWFJsY3pBZUZ3MHlOREV5TURReE9ESXlNRFZhRncwek5ERXlNREl4T0RJeQpNRFZhTUJVeEV6QVJCZ05WQkFvVENtdDFZbVZ5Ym1WMFpYTXdXVEFUQmdjcWhrak9QUUlCQmdncWhrak9QUU1CCkJ3TkNBQVFMbS8vMjJTVWp5elFFMVhzSEY3dGpWR1plME9UQnNTWUE1VjdxSkFEaWlNZEhRL1pnZTlpMGY4SzkKbzI2UmFxazBXaXdaMmVxUWo2bzhOMWN6Mmdwd28yRXdYekFPQmdOVkhROEJBZjhFQkFNQ0FvUXdIUVlEVlIwbApCQll3RkFZSUt3WUJCUVVIQXdFR0NDc0dBUVVGQndNQ01BOEdBMVVkRXdFQi93UUZNQU1CQWY4d0hRWURWUjBPCkJCWUVGQkgvbkVibWgwWFg4aGhaSWI4L0JLRjZYMUN6TUFvR0NDcUdTTTQ5QkFNQ0Ewa0FNRVlDSVFEcGdrQkoKN2wzMlpjQmZXYlNzMEd3UU1FSWtjQjBlSXhOMDVtbjZVYlFHUEFJaEFJZlY1MG43Qi9nT1dtYjFVSExPNUMwTgpwaTFwS0lGU0p3aWFwYkxFeGYzOAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== key: "" # API server specific configuration options. apiServer: # Configure the API server admission plugins. admissionControl: - name: PodSecurity # Name is the name of the admission controller. # Configuration is an embedded configuration object to be used as the plugin's configuration: apiVersion: pod-security.admission.config.k8s.io/v1beta1 exemptions: namespaces: - openebs - democratic-csi kind: PodSecurityConfiguration # # The container image used in the API server manifest. # image: registry.k8s.io/kube-apiserver:v1.31.2 # # Configure the API server audit policy. # auditPolicy: # apiVersion: audit.k8s.io/v1 # kind: Policy # rules: # - level: Metadata # Kube-proxy server-specific configuration options proxy: disabled: false # Disable kube-proxy deployment on cluster bootstrap. mode: nftables # proxy mode of kube-proxy. # Extra arguments to supply to kube-proxy. extraArgs: proxy-mode: nftables # # The container image used in the kube-proxy manifest. # image: registry.k8s.io/kube-proxy:v1.31.2 # Configures cluster member discovery. discovery: enabled: true # Enable the cluster membership discovery feature. # Configure registries used for cluster member discovery. registries: # Kubernetes registry uses Kubernetes API server to discover cluster members and stores additional information kubernetes: disabled: true # Disable Kubernetes discovery registry. # Service registry is using an external service to push and pull information about cluster members. service: {} # # External service endpoint. # endpoint: https://discovery.talos.dev/ # A list of urls that point to additional manifests. extraManifests: - https://raw.githubusercontent.com/alex1989hu/kubelet-serving-cert-approver/main/deploy/standalone-install.yaml - https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml - https://raw.githubusercontent.com/kubernetes/ingress-nginx/refs/tags/controller-v1.11.3/deploy/static/provider/baremetal/deploy.yaml # A list of inline Kubernetes manifests. inlineManifests: - name: calico-installation # Name of the manifest. contents: | # Manifest contents as a string. apiVersion: operator.tigera.io/v1 kind: Installation metadata: name: default spec: variant: Calico cni: type: Calico ipam: type: Calico serviceCIDRs: - 10.80.0.0/12 calicoNetwork: bgp: Enabled linuxDataplane: Nftables hostPorts: Enabled ipPools: - name: default-ipv4-ippool blockSize: 24 cidr: 10.64.0.0/12 encapsulation: None natOutgoing: Disabled nodeSelector: all() - name: calico-apiserver # Name of the manifest. contents: | # Manifest contents as a string. apiVersion: operator.tigera.io/v1 kind: APIServer metadata: name: default spec: {} - name: calico-bgpconfig # Name of the manifest. contents: | # Manifest contents as a string. apiVersion: crd.projectcalico.org/v1 kind: BGPConfiguration metadata: name: default spec: asNumber: 64624 serviceClusterIPs: - cidr: 10.80.0.0/12 - name: calico-bgppeer # Name of the manifest. contents: | # Manifest contents as a string. apiVersion: crd.projectcalico.org/v1 kind: BGPPeer metadata: name: router-balsillie-house spec: asNumber: 64625 peerIP: 192.168.1.11:179 allowSchedulingOnControlPlanes: true # Allows running workload on control-plane nodes. # # A key used for the [encryption of secret data at rest](https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/). # # Decryption secret example (do not use in production!). # aescbcEncryptionSecret: z01mye6j16bspJYtTB/5SFX8j7Ph4JXxM2Xuu4vsBPM= # # A key used for the [encryption of secret data at rest](https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/). # # Decryption secret example (do not use in production!). # secretboxEncryptionSecret: z01mye6j16bspJYtTB/5SFX8j7Ph4JXxM2Xuu4vsBPM= # # The base64 encoded aggregator certificate authority used by Kubernetes for front-proxy certificate generation. # # AggregatorCA example. # aggregatorCA: # crt: LS0tIEVYQU1QTEUgQ0VSVElGSUNBVEUgLS0t # key: LS0tIEVYQU1QTEUgS0VZIC0tLQ== # # The base64 encoded private key for service account token generation. # # AggregatorCA example. # serviceAccount: # key: LS0tIEVYQU1QTEUgS0VZIC0tLQ== # # Controller manager server specific configuration options. # controllerManager: # image: registry.k8s.io/kube-controller-manager:v1.31.2 # The container image used in the controller manager manifest. # # Extra arguments to supply to the controller manager. # extraArgs: # feature-gates: ServerSideApply=true # # Scheduler server specific configuration options. # scheduler: # image: registry.k8s.io/kube-scheduler:v1.31.2 # The container image used in the scheduler manifest. # # Extra arguments to supply to the scheduler. # extraArgs: # feature-gates: AllBeta=true # # Etcd specific configuration options. # etcd: # image: gcr.io/etcd-development/etcd:v3.5.16 # The container image used to create the etcd service. # # The `ca` is the root certificate authority of the PKI. # ca: # crt: LS0tIEVYQU1QTEUgQ0VSVElGSUNBVEUgLS0t # key: LS0tIEVYQU1QTEUgS0VZIC0tLQ== # # Extra arguments to supply to etcd. # extraArgs: # election-timeout: "5000" # # The `advertisedSubnets` field configures the networks to pick etcd advertised IP from. # advertisedSubnets: # - 10.0.0.0/8 # # Core DNS specific configuration options. # coreDNS: # image: registry.k8s.io/coredns/coredns:v1.11.3 # The `image` field is an override to the default coredns image. # # External cloud provider configuration. # externalCloudProvider: # enabled: true # Enable external cloud provider. # # A list of urls that point to additional manifests for an external cloud provider. # manifests: # - https://raw.githubusercontent.com/kubernetes/cloud-provider-aws/v1.20.0-alpha.0/manifests/rbac.yaml # - https://raw.githubusercontent.com/kubernetes/cloud-provider-aws/v1.20.0-alpha.0/manifests/aws-cloud-controller-manager-daemonset.yaml # # A map of key value pairs that will be added while fetching the extraManifests. # extraManifestHeaders: # Token: "1234567" # X-ExtraInfo: info # # Settings for admin kubeconfig generation. # adminKubeconfig: # certLifetime: 1h0m0s # Admin kubeconfig certificate lifetime (default is 1 year).