6 Commits

Author SHA1 Message Date
2ee34dbd5e chore(deps): update ghcr.io/traefik/traefik docker tag to v3.6.8
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
lint-test-docker / lint-docker-compose (pull_request) Successful in 1m43s
2026-02-12 21:01:45 +00:00
b4919afab0 feat: disable l2 announcement
All checks were successful
lint-test-helm / lint-helm (push) Successful in 57s
render-manifests-push / render-manifests-push (push) Successful in 2m12s
renovate / renovate (push) Successful in 3m13s
2026-02-12 14:24:25 -06:00
a40b5916ea fix: change devices
All checks were successful
lint-test-helm / lint-helm (push) Successful in 28s
render-manifests-push / render-manifests-push (push) Successful in 39s
renovate / renovate (push) Successful in 1m37s
2026-02-12 13:53:44 -06:00
d9090e17f4 feat: change ip range
All checks were successful
lint-test-helm / lint-helm (push) Successful in 12s
render-manifests-push / render-manifests-push (push) Successful in 48s
renovate / renovate (push) Successful in 1m29s
2026-02-12 13:48:26 -06:00
2613659827 fix: change cidr block
All checks were successful
lint-test-helm / lint-helm (push) Successful in 13s
render-manifests-push / render-manifests-push (push) Successful in 36s
renovate / renovate (push) Successful in 3m23s
2026-02-12 13:41:19 -06:00
2b301e503c fix: change to auto
All checks were successful
lint-test-helm / lint-helm (push) Successful in 18s
render-manifests-push / render-manifests-push (push) Successful in 1m26s
renovate / renovate (push) Successful in 2m29s
2026-02-12 13:13:11 -06:00
7 changed files with 53 additions and 72 deletions

View File

@@ -1,17 +0,0 @@
apiVersion: "cilium.io/v2alpha1"
kind: CiliumL2AnnouncementPolicy
metadata:
name: node-gateway-l2-policy
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: node-gateway-l2-policy
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
nodeSelector:
matchLabels:
kubernetes.io/hostname: talos-ix7-xku
interfaces:
- "^enp.*"
externalIPs: true
loadBalancerIPs: true

View File

@@ -9,8 +9,8 @@ metadata:
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
blocks:
- start: "10.232.2.21"
stop: "10.232.2.23"
- start: "10.232.1.21"
stop: "10.232.1.23"
---
apiVersion: cilium.io/v2

View File

@@ -1,46 +1,45 @@
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: cilium-tls-gateway
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: cilium-tls-gateway
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/part-of: {{ .Release.Name }}
annotations:
cert-manager.io/cluster-issuer: letsencrypt-issuer
io.cilium/lb-ipam-ips: "10.232.1.23"
spec:
addresses:
- type: IPAddress
value: 10.232.1.23
gatewayClassName: cilium
listeners:
- allowedRoutes:
namespaces:
from: All
hostname: '*.alexlebens.net'
name: https
port: 443
protocol: HTTPS
tls:
certificateRefs:
- group: ''
kind: Secret
name: https-gateway-cert
namespace: kube-system
mode: Terminate
- allowedRoutes:
namespaces:
from: All
hostname: 'alexlebens.net'
name: https-domain
port: 443
protocol: HTTPS
tls:
certificateRefs:
- group: ''
kind: Secret
name: https-gateway-cert
namespace: kube-system
mode: Terminate
# apiVersion: gateway.networking.k8s.io/v1
# kind: Gateway
# metadata:
# name: cilium-tls-gateway
# namespace: {{ .Release.Namespace }}
# labels:
# app.kubernetes.io/name: cilium-tls-gateway
# app.kubernetes.io/instance: {{ .Release.Name }}
# app.kubernetes.io/part-of: {{ .Release.Name }}
# annotations:
# cert-manager.io/cluster-issuer: letsencrypt-issuer
# spec:
# addresses:
# - type: IPAddress
# value: 10.232.1.23
# gatewayClassName: cilium
# listeners:
# - allowedRoutes:
# namespaces:
# from: All
# hostname: '*.alexlebens.net'
# name: https
# port: 443
# protocol: HTTPS
# tls:
# certificateRefs:
# - group: ''
# kind: Secret
# name: https-gateway-cert
# namespace: kube-system
# mode: Terminate
# - allowedRoutes:
# namespaces:
# from: All
# hostname: 'alexlebens.net'
# name: https-domain
# port: 443
# protocol: HTTPS
# tls:
# certificateRefs:
# - group: ''
# kind: Secret
# name: https-gateway-cert
# namespace: kube-system
# mode: Terminate

View File

@@ -26,7 +26,7 @@ cilium:
- SYS_ADMIN
- SYS_RESOURCE
l2announcements:
enabled: true
enabled: false
bgpControlPlane:
enabled: false
secretsNamespace:
@@ -37,8 +37,7 @@ cilium:
mode: "default"
bpf:
hostLegacyRouting: true
devices: '^(enp|end|eth)[0-9a-z]*'
enableK8sEndpointSlice: true
devices: end0 enp6s0
ciliumEndpointSlice:
enabled: true
ingressController:
@@ -48,7 +47,7 @@ cilium:
enableAlpn: true
enableAppProtocol: true
gatewayClass:
create: true
create: auto
externalIPs:
enabled: true
socketLB:

View File

@@ -1,7 +1,7 @@
---
services:
traefik:
image: ghcr.io/traefik/traefik:v3.6.7
image: ghcr.io/traefik/traefik:v3.6.8
container_name: traefik
command:
- "--global.checkNewVersion=false"

View File

@@ -1,7 +1,7 @@
---
services:
traefik:
image: ghcr.io/traefik/traefik:v3.6.7
image: ghcr.io/traefik/traefik:v3.6.8
container_name: traefik
command:
- "--global.checkNewVersion=false"

View File

@@ -20,7 +20,7 @@ services:
- /dev/net/tun:/dev/net/tun
traefik:
image: ghcr.io/traefik/traefik:v3.6.7
image: ghcr.io/traefik/traefik:v3.6.8
container_name: traefik
command:
- "--global.checkNewVersion=false"