comments for TODOs
This commit is contained in:
parent
a063eaa0be
commit
31b12da2c7
2 changed files with 4 additions and 8 deletions
|
|
@ -5,8 +5,8 @@ data "helm_template" "cilium" {
|
||||||
namespace = "kube-system"
|
namespace = "kube-system"
|
||||||
chart = "cilium"
|
chart = "cilium"
|
||||||
repository = "https://helm.cilium.io/"
|
repository = "https://helm.cilium.io/"
|
||||||
version = "1.16.0-rc.0"
|
version = "1.16.0-rc.0" # TODO: optional specific version
|
||||||
kube_version = "1.29"
|
kube_version = "1.29" # TODO: use installed?
|
||||||
atomic = true
|
atomic = true
|
||||||
|
|
||||||
# features
|
# features
|
||||||
|
|
@ -60,7 +60,3 @@ data "helm_template" "cilium" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# output "cilium_manifest" {
|
|
||||||
# value = data.helm_template.cilium.manifest
|
|
||||||
# sensitive = true
|
|
||||||
# }
|
|
||||||
|
|
|
||||||
4
talos.tf
4
talos.tf
|
|
@ -27,7 +27,7 @@ locals {
|
||||||
})
|
})
|
||||||
talos_config_patches = yamlencode({
|
talos_config_patches = yamlencode({
|
||||||
cluster = {
|
cluster = {
|
||||||
allowSchedulingOnControlPlanes = true
|
allowSchedulingOnControlPlanes = true # TODO: optional
|
||||||
network = {
|
network = {
|
||||||
cni = {
|
cni = {
|
||||||
name = "none"
|
name = "none"
|
||||||
|
|
@ -63,7 +63,7 @@ locals {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
machine = {
|
machine = {
|
||||||
kubelet = {
|
kubelet = { # TODO: optional kubelet version
|
||||||
nodeIP = {
|
nodeIP = {
|
||||||
validSubnets = [
|
validSubnets = [
|
||||||
"${var.hcloud_private_network.cidr}"
|
"${var.hcloud_private_network.cidr}"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue