wip
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
# Ref: https://docs.siderolabs.com/talos/latest/reference/configuration/network/hostnameconfig
|
||||
|
||||
apiVersion: v1alpha1
|
||||
kind: HostnameConfig
|
||||
hostname: ${hostname}
|
||||
auto: off
|
||||
@@ -0,0 +1,12 @@
|
||||
# Ref: https://docs.siderolabs.com/talos/latest/reference/configuration/network/linkconfig
|
||||
|
||||
apiVersion: v1alpha1
|
||||
kind: LinkConfig
|
||||
name: enp0s1 # Default link position assigned by proxmox
|
||||
up: true
|
||||
mtu: 1500
|
||||
addresses:
|
||||
- address: ${ipv4_address}/${ipv4_subnet_mask}
|
||||
routes:
|
||||
- destination: 0.0.0.0/0
|
||||
gateway: ${ipv4_gateway}
|
||||
@@ -0,0 +1,8 @@
|
||||
# Ref: https://docs.siderolabs.com/talos/latest/reference/configuration/network/resolverconfig
|
||||
|
||||
apiVersion: v1alpha1
|
||||
kind: ResolverConfig
|
||||
nameservers: ${jsonencode(concat(ipv4_nameservers, ipv6_nameservers))}
|
||||
searchDomains:
|
||||
disableDefault: true
|
||||
domains: ${jsonencode(search_domains)}
|
||||
@@ -0,0 +1,8 @@
|
||||
# Ref: https://docs.siderolabs.com/talos/latest/reference/configuration/network/timesyncconfig
|
||||
|
||||
apiVersion: v1alpha1
|
||||
kind: TimeSyncConfig
|
||||
enabled: true
|
||||
# bootTimeout: "infinity"
|
||||
ntp:
|
||||
servers: ${jsonencode(concat(ipv4_ntp_servers, ipv6_ntp_servers))}
|
||||
Reference in New Issue
Block a user