This commit is contained in:
parent
bca4a4aa6e
commit
059934a7c0
2 changed files with 11 additions and 2 deletions
|
@ -26,18 +26,21 @@ data "helm_template" "cilium" {
|
|||
bpf:
|
||||
masquerade: true
|
||||
|
||||
enableIPv4Masquerade: true
|
||||
ipv4:
|
||||
enabled: true
|
||||
ipv4NativeRoutingCIDR: "${var.cluster.pod_cidr.ipv4}"
|
||||
|
||||
enableIPv6Masquerade: true
|
||||
ipv6:
|
||||
enabled: false
|
||||
ipv6NativeRoutingCIDR: "${var.cluster.pod_cidr.ipv6}"
|
||||
|
||||
kubeProxyReplacement: true
|
||||
|
||||
# This breaks it??
|
||||
#k8s:
|
||||
# requireIPv4PodCIDR: true
|
||||
# requireIPv6PodCIDR: true
|
||||
|
||||
securityContext:
|
||||
capabilities:
|
||||
ciliumAgent:
|
||||
|
|
|
@ -184,6 +184,12 @@ locals {
|
|||
image = "factory.talos.dev/installer/${var.talos.schematic_id}:${var.talos.version}"
|
||||
disk = "/dev/vda"
|
||||
}
|
||||
features = {
|
||||
hostDNS = {
|
||||
enabled = true
|
||||
forwardKubeDNSToHost = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue