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:
|
bpf:
|
||||||
masquerade: true
|
masquerade: true
|
||||||
|
|
||||||
enableIPv4Masquerade: true
|
|
||||||
ipv4:
|
ipv4:
|
||||||
enabled: true
|
enabled: true
|
||||||
ipv4NativeRoutingCIDR: "${var.cluster.pod_cidr.ipv4}"
|
ipv4NativeRoutingCIDR: "${var.cluster.pod_cidr.ipv4}"
|
||||||
|
|
||||||
enableIPv6Masquerade: true
|
|
||||||
ipv6:
|
ipv6:
|
||||||
enabled: false
|
enabled: false
|
||||||
ipv6NativeRoutingCIDR: "${var.cluster.pod_cidr.ipv6}"
|
ipv6NativeRoutingCIDR: "${var.cluster.pod_cidr.ipv6}"
|
||||||
|
|
||||||
kubeProxyReplacement: true
|
kubeProxyReplacement: true
|
||||||
|
|
||||||
|
# This breaks it??
|
||||||
|
#k8s:
|
||||||
|
# requireIPv4PodCIDR: true
|
||||||
|
# requireIPv6PodCIDR: true
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
ciliumAgent:
|
ciliumAgent:
|
||||||
|
|
|
@ -184,6 +184,12 @@ locals {
|
||||||
image = "factory.talos.dev/installer/${var.talos.schematic_id}:${var.talos.version}"
|
image = "factory.talos.dev/installer/${var.talos.schematic_id}:${var.talos.version}"
|
||||||
disk = "/dev/vda"
|
disk = "/dev/vda"
|
||||||
}
|
}
|
||||||
|
features = {
|
||||||
|
hostDNS = {
|
||||||
|
enabled = true
|
||||||
|
forwardKubeDNSToHost = false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue