updating k8s cluster

This commit is contained in:
Joseph Hanson 2023-06-13 20:51:22 -05:00
parent 5a4e7db0ef
commit fe4d62dbd1
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
4 changed files with 21 additions and 8 deletions

View file

@ -158,6 +158,13 @@ set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-ma
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping tulkas ip-address '10.1.1.53' set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping tulkas ip-address '10.1.1.53'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping tulkas mac-address '26:82:2F:16:7A:36' set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping tulkas mac-address '26:82:2F:16:7A:36'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping galadriel ip-address '10.1.1.61'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping galadriel mac-address '96:C6:24:13:E8:2F'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping elrond ip-address '10.1.1.62'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping elrond mac-address 'C8:1F:66:10:51:D9'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping cirdan ip-address '10.1.1.63'
set service dhcp-server shared-network-name SERVERS subnet 10.1.1.0/24 static-mapping cirdan mac-address '9A:37:F2:C6:C3:DD'
# Trusted VLAN # Trusted VLAN
set service dhcp-server shared-network-name TRUSTED authoritative set service dhcp-server shared-network-name TRUSTED authoritative
set service dhcp-server shared-network-name TRUSTED ping-check set service dhcp-server shared-network-name TRUSTED ping-check

View file

@ -5,7 +5,7 @@
$TTL 3600 $TTL 3600
$ORIGIN 1.10.in-addr.arpa. $ORIGIN 1.10.in-addr.arpa.
@ 3600 IN SOA gateway.jahanson.tech. gateway.jahanson.tech. ( @ 3600 IN SOA gateway.jahanson.tech. gateway.jahanson.tech. (
1686507728 ; serial number (epoch timestamp) 1686691675 ; serial number (epoch timestamp)
7200 ; refresh period 7200 ; refresh period
3600 ; retry period 3600 ; retry period
1209600 ; expire time 1209600 ; expire time
@ -34,6 +34,9 @@ $ORIGIN in-addr.arpa.
51.1.1.10 IN PTR nextcloud.jahanson.tech. 51.1.1.10 IN PTR nextcloud.jahanson.tech.
52.1.1.10 IN PTR frodo.jahanson.tech. 52.1.1.10 IN PTR frodo.jahanson.tech.
53.1.1.10 IN PTR tulkas.jahanson.tech. 53.1.1.10 IN PTR tulkas.jahanson.tech.
61.1.1.10 IN PTR galadriel.jahanson.tech.
62.1.1.10 IN PTR elrond.jahanson.tech.
63.1.1.10 IN PTR cirdan.jahanson.tech.
; IOT ; IOT
18.3.1.10 IN PTR livingroom-vacuum.jahanson.tech. 18.3.1.10 IN PTR livingroom-vacuum.jahanson.tech.

View file

@ -31,6 +31,9 @@ nahar IN A 10.1.1.44
nextcloud IN A 10.1.1.51 nextcloud IN A 10.1.1.51
frodo IN A 10.1.1.52 frodo IN A 10.1.1.52
tulkas IN A 10.1.1.53 tulkas IN A 10.1.1.53
galadriel IN A 10.1.1.61
elrond IN A 10.1.1.62
cirdan IN A 10.1.1.63
; IOT ; IOT
livingroom-vacuum IN A 10.1.3.18 livingroom-vacuum IN A 10.1.3.18
@ -39,7 +42,7 @@ livingroom-vacuum IN A 10.1.3.18
driveway-camera IN A 10.1.4.12 driveway-camera IN A 10.1.4.12
; Containers ; Containers
cluster-0 IN A 10.5.0.2 morgoth IN A 10.5.0.2
; CNAME records ; CNAME records
nas IN CNAME elessar.jahanson.tech. nas IN CNAME elessar.jahanson.tech.

View file

@ -51,9 +51,9 @@ backend k8s_controlplane
mode tcp mode tcp
option ssl-hello-chk option ssl-hello-chk
balance roundrobin balance roundrobin
server worker1 10.1.1.41:6443 check server worker1 10.1.1.61:6443 check
server worker2 10.1.1.42:6443 check server worker2 10.1.1.62:6443 check
server worker3 10.1.1.43:6443 check server worker3 10.1.1.63:6443 check
backend talos_controlplane backend talos_controlplane
option httpchk GET /healthz option httpchk GET /healthz
@ -61,6 +61,6 @@ backend talos_controlplane
mode tcp mode tcp
option ssl-hello-chk option ssl-hello-chk
balance roundrobin balance roundrobin
server worker1 10.1.1.41:50000 check server worker1 10.1.1.61:50000 check
server worker2 10.1.1.42:50000 check server worker2 10.1.1.62:50000 check
server worker3 10.1.1.43:50000 check server worker3 10.1.1.63:50000 check