Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
!/work/manifests/supernetes/**
!/work/manifests/kustomization.yaml
!/work/patch/cilium.yaml
!/work/patch/dns.yaml
!/work/patch/metrics-server.yaml
!/work/patch/single-node.yaml
8 changes: 8 additions & 0 deletions work/patch/dns.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Talos' way of redirecting kube-dns (CoreDNS) to the host doesn't work with Cilium if
# bpf.hostLegacyRouting=false and/or bpf.masquerade=true. For more information, see
# https://github.com/siderolabs/talos/pull/9200.
machine:
features:
hostDNS:
enabled: true
forwardKubeDNSToHost: false
1 change: 1 addition & 0 deletions work/supernetes-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ cluster:
all-namespaces: false # Set to "false" to make Flux only watch the installation namespace (optional)
patches: # Any cluster-wide patches to apply when creating the configuration with `talosctl gen config` (optional)
- "@patch/cilium.yaml"
- "@patch/dns.yaml"
- "@patch/metrics-server.yaml"
- "@patch/single-node.yaml"
manifests: manifests # Kustomization directory for additional manifests to be applied into the cluster (optional)
Expand Down
Loading