comments for TODOs

This commit is contained in:
Stefan Le Breton 2024-11-20 14:47:11 +01:00
parent a063eaa0be
commit 31b12da2c7
2 changed files with 4 additions and 8 deletions

View file

@ -5,8 +5,8 @@ data "helm_template" "cilium" {
namespace = "kube-system"
chart = "cilium"
repository = "https://helm.cilium.io/"
version = "1.16.0-rc.0"
kube_version = "1.29"
version = "1.16.0-rc.0" # TODO: optional specific version
kube_version = "1.29" # TODO: use installed?
atomic = true
# features
@ -60,7 +60,3 @@ data "helm_template" "cilium" {
}
}
# output "cilium_manifest" {
# value = data.helm_template.cilium.manifest
# sensitive = true
# }

View file

@ -27,7 +27,7 @@ locals {
})
talos_config_patches = yamlencode({
cluster = {
allowSchedulingOnControlPlanes = true
allowSchedulingOnControlPlanes = true # TODO: optional
network = {
cni = {
name = "none"
@ -63,7 +63,7 @@ locals {
]
}
machine = {
kubelet = {
kubelet = { # TODO: optional kubelet version
nodeIP = {
validSubnets = [
"${var.hcloud_private_network.cidr}"