Skip to content

Commit

Permalink
Various Improvements (#1586)
Browse files Browse the repository at this point in the history
* Cert-Manager: Replace depricated "installCRDs"

* Cilium: Replace deprecated "io.cilium/lb-ipam-ips" annotation

* Sysctls: Up `net.core.rmem_max` and `net.core.wmem_max` for Cloudflared
  • Loading branch information
Heavybullets8 authored Oct 4, 2024
1 parent f2de4c7 commit cee18af
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ spec:
remediation:
retries: 3
values:
installCRDs: true
crds:
enabled: true
keep: true
dns01RecursiveNameservers: https://1.1.1.1:443/dns-query,https://1.0.0.1:443/dns-query
dns01RecursiveNameserversOnly: true
prometheus:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
service:
annotations:
external-dns.alpha.kubernetes.io/hostname: "external.${SECRET_DOMAIN}"
io.cilium/lb-ipam-ips: "#{ bootstrap_cloudflare.tunnel.ingress_vip }#"
lbipam.cilium.io/ips: "#{ bootstrap_cloudflare.tunnel.ingress_vip }#"
externalTrafficPolicy: Cluster
ingressClassResource:
name: external
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
controller:
service:
annotations:
io.cilium/lb-ipam-ips: "#{ bootstrap_cloudflare.ingress_vip }#"
lbipam.cilium.io/ips: "#{ bootstrap_cloudflare.ingress_vip }#"
externalTrafficPolicy: Cluster
ingressClassResource:
name: internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ spec:
type: LoadBalancer
port: 53
annotations:
io.cilium/lb-ipam-ips: "#{ bootstrap_cloudflare.gateway_vip }#"
lbipam.cilium.io/ips: "#{ bootstrap_cloudflare.gateway_vip }#"
externalTrafficPolicy: Cluster
watchedResources: ["Ingress", "Service"]
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ machine:
fs.inotify.max_queued_events: "65536"
fs.inotify.max_user_watches: "524288"
fs.inotify.max_user_instances: "8192"
net.core.rmem_max: "2500000"
net.core.wmem_max: "2500000"
net.core.rmem_max: "7500000"
net.core.wmem_max: "7500000"

0 comments on commit cee18af

Please sign in to comment.