fix(kubernetes): name TalosConfigTemplate by content hash - #3523
fix(kubernetes): name TalosConfigTemplate by content hash#3523mattia-eleuteri wants to merge 3 commits into
Conversation
TalosConfigTemplate.spec is immutable — vtalosconfigtemplate.cluster.x-k8s.io denies any mutation with "TalosConfigTemplate.Spec is immutable" — but the talos-reconcile Job applied it under a fixed <release>-<group> name on every reconcile. Once the template existed, no change to the rendered worker machine config could reach the cluster: the apply was rejected server-side while the HelmRelease stayed Ready. Observed with machine.network.searchDomains after a clusterDomain correction; the same held for certSANs, machine.registries and nameservers. Name the template after a 6-char hash of its rendered spec, the idiom KubevirtMachineTemplate already uses in the same chart, and point MachineDeployment.spec.template.spec.bootstrap.configRef at that name. A content change now creates a new template instead of attempting a rejected mutation, and CAPI rolls the workers onto it. The spec is rendered from one named template shared by the Job (which embeds it in its heredoc) and the MachineDeployment (which hashes it into configRef), so the two cannot compute different names. The runtime values the Job substitutes (CA certificates, Service ClusterIP, tokens) stay shell placeholders and are not hashed, so a certificate rotation does not roll workers. Upgrade note: existing clusters roll their Talos workers once, because the configRef moves from <release>-<group> to the hashed name and CAPI creates a new MachineSet for it. The rendered machine config itself is unchanged by this commit. The pre-existing fixed-name template is left in place — the outgoing MachineSet still references it — and is garbage-collected with the KamajiControlPlane when the cluster is deleted. Fixes cozystack#3515 Signed-off-by: Mattia Eleuteri <mattia@hidora.io>
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (6)
🚧 Files skipped from review as they are similar to previous changes (5)
📝 WalkthroughWalkthroughChangesWorker Talos specifications are now rendered by shared Helm helpers and hashed with six-character SHA-256 suffixes. MachineDeployments and reconcile Jobs use the same hashed TalosConfigTemplate name. Helm tests validate reference consistency and hash changes. TalosConfigTemplate content hashing
Estimated code review effort: 4 (Complex) | ~60 minutes Sequence Diagram(s)sequenceDiagram
participant Helm
participant MachineDeployment
participant TalosReconcileJob
participant TalosConfigTemplate
Helm->>MachineDeployment: Render hashed bootstrap configRef
Helm->>TalosReconcileJob: Pass TCT_NAME and TCT_SPEC
TalosReconcileJob->>TalosConfigTemplate: Apply hashed name and rendered spec
Possibly related PRs
Suggested labels: Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 Trivy (0.72.0)Trivy execution failed: 2026-08-10T11:55:37Z FATAL Fatal error run error: fs scan error: scan error: scan failed: failed analysis: post analysis error: post analysis error: kubernetes scan error: fs filter error: fs filter error: walk error range error: stat smartylint.json: no such file or directory: range error: stat smartylint.json: no such file or directory Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (2)
packages/apps/kubernetes-nodes/templates/talos-reconcile-job.yaml (1)
233-253: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low valuePlan for cleanup of superseded TalosConfigTemplates.
Each machine-config change now creates a new
TalosConfigTemplate. The previous object stays, because the oldMachineSetstill references it, and theownerReferencetargets theKamajiControlPlane. Nothing removes it after the rollout completes. Over the cluster lifetime these objects accumulate, one per machine-config change per node group.Consider a follow-up that prunes templates which no
MachineSetorMachinereferences anymore. Retention during the rollout is correct; unbounded retention is the part to address later.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@packages/apps/kubernetes-nodes/templates/talos-reconcile-job.yaml` around lines 233 - 253, Plan a follow-up cleanup for superseded TalosConfigTemplates created by the reconciliation flow around the kubectl apply block. After rollout completion, identify templates no longer referenced by any MachineSet or Machine and delete only those unreferenced objects, preserving templates still needed during an active rollout.packages/apps/kubernetes-nodes/tests/talos_reconcile_job_test.yaml (1)
43-49: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick winAdd the negative assertion that the parent chart suite has.
packages/apps/kubernetes/tests/talos_config_template_name_test.yamlpins anotMatchRegexguard against the old fixed name. This suite omits it. Add the same guard so a regression to a fixed name fails in both charts.♻️ Proposed addition
- matchRegex: path: spec.template.spec.containers[0].command[2] pattern: 'name: \$\{TCT_NAME\}' + - notMatchRegex: + path: spec.template.spec.containers[0].command[2] + pattern: 'name: \$\{RELEASE\}-\$\{GROUP_NAME\}'🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@packages/apps/kubernetes-nodes/tests/talos_reconcile_job_test.yaml` around lines 43 - 49, Extend the assertions in the Talos reconcile job test alongside the existing TCT_NAME checks by adding a notMatchRegex assertion for the old fixed name, matching the guard used in talos_config_template_name_test.yaml. Keep the current expected dynamic value and command regex assertions unchanged.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@packages/apps/kubernetes-nodes/templates/_talosconfigtemplate.tpl`:
- Around line 41-48: Define the missing cozy-lib.resources.toFloat helper
locally for the kubernetes-nodes chart, or add a valid local cozy-lib dependency
that provides it. Update the existing call sites to use the available helper if
implementing it locally, and ensure Helm rendering no longer depends on an
undefined cozy-lib.resources.toFloat function.
---
Nitpick comments:
In `@packages/apps/kubernetes-nodes/templates/talos-reconcile-job.yaml`:
- Around line 233-253: Plan a follow-up cleanup for superseded
TalosConfigTemplates created by the reconciliation flow around the kubectl apply
block. After rollout completion, identify templates no longer referenced by any
MachineSet or Machine and delete only those unreferenced objects, preserving
templates still needed during an active rollout.
In `@packages/apps/kubernetes-nodes/tests/talos_reconcile_job_test.yaml`:
- Around line 43-49: Extend the assertions in the Talos reconcile job test
alongside the existing TCT_NAME checks by adding a notMatchRegex assertion for
the old fixed name, matching the guard used in
talos_config_template_name_test.yaml. Keep the current expected dynamic value
and command regex assertions unchanged.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: 4ce44873-041b-4da9-9fb8-9667e8adbd35
📒 Files selected for processing (11)
packages/apps/kubernetes-nodes/Makefilepackages/apps/kubernetes-nodes/templates/_talosconfigtemplate.tplpackages/apps/kubernetes-nodes/templates/nodegroup.yamlpackages/apps/kubernetes-nodes/templates/talos-reconcile-job.yamlpackages/apps/kubernetes-nodes/tests/nodegroup_test.yamlpackages/apps/kubernetes-nodes/tests/talos_reconcile_job_test.yamlpackages/apps/kubernetes/templates/cluster.yamlpackages/apps/kubernetes/templates/talos/_talosconfigtemplate.tplpackages/apps/kubernetes/templates/talos/talos-reconcile-job.yamlpackages/apps/kubernetes/tests/talos_config_template_name_test.yamlpackages/apps/kubernetes/tests/talos_templates_test.yaml
| {{- define "kubernetes.talosConfigTemplateSpec" -}} | ||
| {{- $root := .root }} | ||
| {{- $group := .group }} | ||
| {{- $kubeletVersion := include "kubernetes.versionMap" $root | trim }} | ||
| {{- $talosVersion := $root.Values.talos.version }} | ||
| {{- $podCIDR := "10.243.0.0/16" }} | ||
| {{- $serviceCIDR := "10.95.0.0/16" }} | ||
| {{- $dnsDomain := include "kubernetes.tenantClusterDomain" $root }} |
There was a problem hiding this comment.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Confirm helper defines and talos values exist in the kubernetes-nodes chart.
set -uo pipefail
echo "== defines in kubernetes-nodes =="
rg -n --glob 'packages/apps/kubernetes-nodes/**' 'define "(kubernetes\.versionMap|kubernetes\.tenantClusterDomain|kubernetes\.cpuToMillicores|kubernetes\.nodeGroups)"'
echo "== cozy-lib dependency =="
fd -a 'Chart.yaml' packages/apps/kubernetes-nodes --exec cat
echo "== talos values =="
fd -a 'values.yaml' packages/apps/kubernetes-nodes -d 2 --exec rg -n -A5 '^talos:'Repository: cozystack/cozystack
Length of output: 191
🏁 Script executed:
#!/bin/bash
# Inspect the kubernetes-nodes chart files and referenced helpers/values without relying on the prior failing command.
set -u
echo "== kubernetes-nodes tracked files =="
git ls-files packages/apps/kubernetes-nodes | sed -n '1,200p'
echo
echo "== Chart.yaml files under kubernetes-nodes =="
fd -a 'Chart\.yaml$' packages/apps/kubernetes-nodes -d 3 --exec sh -c 'echo "--- $1"; cat -n "$1"' sh {}
echo
echo "== values.yaml files under kubernetes-nodes with talos context =="
fd -a 'values\.yaml$' packages/apps/kubernetes-nodes -d 3 --exec sh -c 'echo "--- $1"; sed -n "1,260p" "$1" | nl -ba' sh {}
echo
echo "== template helper definitions under kubernetes-nodes =="
fd -a '^\._?.*\.tpl$' packages/apps/kubernetes-nodes -d 4 --exec sh -c '
echo "--- $1"
rg -n "define \"kubernetes\.(versionMap|tenantClusterDomain|cpuToMillicores|talosConfigTemplateSpec|talosConfigTemplateHash|nodeGroups)\"|cozy-lib\.resources|talos\." "$1" || true
' sh {}Repository: cozystack/cozystack
Length of output: 2163
🏁 Script executed:
#!/bin/bash
set -u
echo "== Chart.yaml dependency section =="
sed -n '1,120p' packages/apps/kubernetes-nodes/Chart.yaml | cat -A
echo
echo "== talos section in values.yaml =="
python3 - <<'PY'
from pathlib import Path
p=Path('packages/apps/kubernetes-nodes/values.yaml')
lines=p.read_text().splitlines()
for i,l in enumerate(lines,1):
if l.startswith('talos:'):
start=max(1,i-3); end=min(i+50,len(lines))
for j in range(start,end+1):
print(f'{j:5d}: {lines[j-1]}')
break
else:
print('talos key not found')
PY
echo
echo "== value keys containing talos/version/schematic/installer =="
rg -n -i 'talos|installerRepository|schematicID|schematic|version' packages/apps/kubernetes-nodes/values.yaml packages/apps/kubernetes-nodes/templates packages/apps/kubernetes-nodes/tests || true
echo
echo "== helper definitions in packages/apps/kubernetes-nodes/templates =="
rg -n 'define "(kubernetes\.|cozy-lib\.|talos|talosConfigTemplateSpec|talosConfigTemplateHash)"' packages/apps/kubernetes-nodes/templates || trueRepository: cozystack/cozystack
Length of output: 22842
🏁 Script executed:
#!/bin/bash
set -u
echo "== talosConfig template reference and dependencies =="
python3 - <<'PY'
from pathlib import Path
p=Path('packages/apps/kubernetes-nodes/templates/_talosconfigtemplate.tpl')
s=p.read_text()
for name in ['kubernetes.versionMap','kubernetes.tenantClusterDomain','kubernetes.cpuToMillicores','cozy-lib.resources.toFloat','kubernetes.talosConfigTemplateHash']:
print(f'{name}: {s.count(name)}')
PY
echo
echo "== tenantClusterDomain definitions/usages =="
rg -n 'define "kubernetes\.tenantClusterDomain"|kubernetes\.tenantClusterDomain|tenantClusterDomain' packages/apps/kubernetes-nodes/templates packages/apps/kubernetes-nodes/charts || true
echo
echo "== cpuToMillicores definitions/usages =="
rg -n 'define "kubernetes\.cpuToMillicores"|kubernetes\.cpuToMillicores|cpuToMillicores' packages/apps/kubernetes-nodes/templates packages/apps/kubernetes-nodes/charts || true
echo
echo "== resources.toFloat definitions/usages =="
rg -n 'define "cozy-lib\.resources\.toFloat|resources\.toFloat|toFloat' packages/apps/kubernetes-nodes/templates packages/apps/kubernetes-nodes/charts || true
echo
echo "== versionMap definition context =="
sed -n '1,80p' packages/apps/kubernetes-nodes/templates/_versions.tpl | cat -n
echo
echo "== Chart dependency files =="
find packages/apps/kubernetes-nodes -maxdepth 4 -type f \( -name 'Chart.yaml' -o -name 'Chart.lock' -o -name 'Chart.lock.yaml' \) -print | sort
find packages/apps/kubernetes-nodes -maxdepth 4 -type d | sortRepository: cozystack/cozystack
Length of output: 5381
🏁 Script executed:
#!/bin/bash
set -u
echo "== kubernetes.tenantClusterDomain definition =="
sed -n '35,55p' packages/apps/kubernetes-nodes/templates/_helpers.tpl | cat -n
echo
echo "== kubernetes.cpuToMillicores definition =="
sed -n '1,25p' packages/apps/kubernetes-nodes/templates/_resources.tpl | cat -n
echo
echo "== cozy-lib resources.toFloat definition =="
sed -n '1,80p' packages/apps/kubernetes-nodes/charts/cozy-lib/templates/resources/_helpers.tpl 2>/dev/null | cat -n
find packages/apps/kubernetes-nodes/charts/cozy-lib -type f -name '*.tpl' -print | while read -r f; do
if rg -q 'resources\.toFloat|define ".*toFloat|toFloat' "$f"; then
echo "--- $f"
rg -n 'define ".*toFloat|resources\.toFloat|toFloat' "$f" || true
fi
done
echo
echo "== files/versions.yaml =="
sed -n '1,220p' packages/apps/kubernetes-nodes/files/versions.yaml | cat -n
echo
echo "== values talos keys =="
sed -n '88,100p' packages/apps/kubernetes-nodes/values.yaml | cat -nRepository: cozystack/cozystack
Length of output: 3169
🏁 Script executed:
#!/bin/bash
set -u
echo "== find cozy-lib resource helpers/templates =="
git ls-files packages/apps/kubernetes-nodes/charts/cozy-lib | sed -n '1,120p'
echo
echo "== fuzzy search for resources/tofloat in kubernetes-nodes chart tree =="
rg -n -i 'resources|toFloat|define ".*toFloat|define ".*resource' packages/apps/kubernetes-nodes/charts packages/apps/kubernetes-nodes/templates packages/apps/kubernetes-nodes/values.yaml || true
echo
echo "== inspect Chart.yaml dependency/subchart declarations if any =="
python3 - <<'PY'
from pathlib import Path
p=Path('packages/apps/kubernetes-nodes/Chart.yaml')
s=p.read_text().splitlines()
for i,l in enumerate(s,1):
if 'dependencies:' in l or 'dependencies' in l.lower():
for j in range(max(1,i-3), min(len(s), i+30)+1):
print(f'{j:5d}: {s[j-1]}')
break
else:
print('no dependencies block found')
PYRepository: cozystack/cozystack
Length of output: 8653
Add the missing cozy-lib.resources.toFloat definition.
kubernetes-nodes includes cozy-lib.resources.toFloat, but the chart has no dependencies entry and packages/apps/kubernetes-nodes/charts/cozy-lib exists only as a directory here. Add a real local dependency/template that defines it, or replace this call with an equivalent local helper, otherwise Helm rendering can fail with function "cozy-lib.resources.toFloat" not defined.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/apps/kubernetes-nodes/templates/_talosconfigtemplate.tpl` around
lines 41 - 48, Define the missing cozy-lib.resources.toFloat helper locally for
the kubernetes-nodes chart, or add a valid local cozy-lib dependency that
provides it. Update the existing call sites to use the available helper if
implementing it locally, and ensure Helm rendering no longer depends on an
undefined cozy-lib.resources.toFloat function.
Note for reviewers: overlapping files with a sibling PR
This PR restructures that Job substantially (the machine config moves into a shared named template), so #3521 will |
|
Thanks, but this one is a false positive, and I want to record why so it does not cost a reviewer time.
Mode So Helm resolves it at render time and there is nothing to add. Two further points confirm it: the call sites are not introduced by this PR ( The analysis chain above shows the cause: the shell probes ran |
Aleksei Sviridkin (lexfrei)
left a comment
There was a problem hiding this comment.
NOT LGTM. The fix is right and I verified it end to end, but the branch conflicts with main on the exact lines it rewrites, so it can't merge until it's rebased.
Blocker: rebase onto main
This branch is based on a commit that predates fix(kubernetes): render the talos-reconcile Job for the default md0 group on main. That commit switched the Job's group loop from .Values.nodeGroups to the kubernetes.nodeGroups helper, the same drive-by this PR describes, and it landed on the region this PR rewrites. Merging origin/main into the PR head conflicts in one file, packages/apps/kubernetes/templates/talos/talos-reconcile-job.yaml, and the conflicted region is the group loop plus the kubelet-reservation block this PR moves into _talosconfigtemplate.tpl.
Keep this branch's side of the conflict. It already iterates the helper, so the md0 fix is carried rather than reverted, and the rest of the file already references $tctSpec and $tctName. I resolved it that way locally and the chart suite is green with main's md0 regression test included: 195 tests against the 193 this branch has on its own.
Non-blocking
Hashing the whole rendered spec is the right call, but for a group sized by instanceType the kubelet reservations inside that spec come from a live lookup of the VirtualMachineClusterInstancetype (_talosconfigtemplate.tpl:74). The built-in md0 group is exactly that shape, instanceType: u1.medium with empty resources, so its name depends on an object the chart does not own. The upgrade note says workers roll once. A later platform-side change to that instancetype rotates the name and rolls them again. That is the fix working as intended, but it is a second roll trigger and it belongs in the upgrade note. The KubevirtMachineTemplate hash this mirrors does not have the property, since it embeds the instancetype by name and never its resolved size.
Nothing prunes superseded templates, as you say. templates/cluster.yaml:878 already enumerates live MachineSets to decide which KubevirtMachineTemplates to preserve across an upgrade, and the same enumeration gives a safe prune condition for hashed TalosConfigTemplates. Follow-up issue rather than more scope here.
The Job/MachineDeployment name agreement is pinned by two hand-maintained literals in tests/talos_config_template_name_test.yaml plus a comment saying they have to match. The guard is real: I diverged the hash input at one call site and the suite went red. But only one assertion of the pair fails, so the failure output does not say "these two must be equal", and re-pasting the new value is the obvious wrong fix. Comparing the Job's TCT_NAME against the MachineDeployment's configRef inside one render, the way tests/render-parity.sh already compares objects across charts, would make that self-evident.
What I checked
The machine config the Job applies is byte-identical to what main renders for the same values, plain and GPU node group both; only the template name, the new env var and comments differ. All four render sites agree on the name for the same pool shape: parent chart MachineDeployment and Job, split-pool chart MachineDeployment and Job. _talosconfigtemplate.tpl is byte-identical across the two charts and the split chart's update target copies it. helm lint fails on both charts with default values, identically on main, so no signal there.
No end-to-end coverage applies to this change. The split-pool chart is not exercised by the end-to-end suite at all, and the fork-PR path skips that suite anyway. The unit suites and the parity gate are the whole safety net, which argues for the third follow-up rather than against the change.
The bot note about cozy-lib.resources.toFloat being undefined in kubernetes-nodes is a false positive. packages/apps/kubernetes-nodes/charts/cozy-lib is a symlink to packages/library/cozy-lib, the helper resolves, and nodegroup.yaml on main already calls it a dozen times.
…ash-name Resolves the conflict in packages/apps/kubernetes/templates/talos/talos-reconcile-job.yaml by keeping this branch's side of the group loop. The only upstream change to that file since the merge base is 4e9c5ce "render the talos-reconcile Job for the default md0 group", which switches the loop from .Values.nodeGroups to the kubernetes.nodeGroups helper. This branch already iterates the helper, so keeping our side carries that fix rather than reverting it; the machine config upstream still renders inline lives in templates/talos/_talosconfigtemplate.tpl here, including $mgmtClusterDomain, searchDomains/nameservers and the kubelet reservations, so nothing is lost. Verified: 195 tests pass in packages/apps/kubernetes (main's md0 regression test talos_reconcile_nodegroups_test.yaml included, 193 on this branch alone), 9 in packages/apps/kubernetes-nodes, and render-parity.sh reports GOLDEN PARITY across the resources, gpu and kubelet cases. make generate is clean in both packages. Signed-off-by: Mattia Eleuteri <mattia@hidora.io>
|
Rebased, thanks for the precise pointer. I merged Conflict resolution. Kept this branch's side of the group loop, as you suggested. I checked why before doing it rather than taking it on faith: since the merge base, the only upstream change to Verification matches your local run: 195 tests in On your non-blocking point about the Two ways out, and I do not have a strong preference:
One data point in favour of the current shape: under Live evidence for the "Upgrade impact" section, which I flagged as unverified. We now have it, from a production fleet of 13 tenant clusters. Last night we exercised the same rollout path this PR triggers, by changing a value that rotates the
None of this changes the correctness of this PR, and I am not proposing to widen its scope. It does mean the one-time roll it ships is not free for clusters with a scarce-resource node group, so I would rather say so in the release note than have operators discover it. Happy to add a paragraph to the upgrade-impact section covering the above if you want it in this PR, or to open it as a follow-up against the |
Aleksei Sviridkin (lexfrei)
left a comment
There was a problem hiding this comment.
NOT LGTM. The 5 August merge fixed my blocker and I checked it, but main moved and the same two files conflict again. This time picking a side is the wrong resolution.
Blocker: the conflict now carries a security fix
Since your merge base, main landed 3a1292d68 (escape tenant values in the worker reconcile heredoc, #3513) and 58910c0ed (registry mirror passthrough). Both edit the machine-config block this PR moves into _talosconfigtemplate.tpl. main escapes backslash, dollar and backtick on talosVersion, installerRepository and schematicID, adds an escaped machine.registries.mirrors block, and puts an INVARIANT comment above data: saying why anything new there needs escaping or render-time validation.
The helper here has none of that. _talosconfigtemplate.tpl:115 and :195 interpolate raw, and the sink is untouched: talos-reconcile-job.yaml:336 is still cat <<EOF | kubectl apply -f - with the spec nindented in at :349, same at :238 and :251 in the split chart. Keep this branch's side and the injection is back, in both charts, with the mirror feature gone too.
So port both commits into _talosconfigtemplate.tpl rather than resolve by picking. The INVARIANT comment belongs there as well, since that file is where the next field gets added and it is the one place that says nothing about the heredoc.
Two things follow from the port. talos.registryMirrors ends up inside the hashed spec, so changing it rolls the workers instead of only affecting nodes created later, and packages/apps/kubernetes/README.md currently tells operators the opposite. And "byte-identical to main" was measured against a main that no longer exists, so it needs rerunning. I expect it still holds on default values: the escapes are no-ops on ordinary version strings and the mirrors block is gated on a non-empty map.
Last round
Blocker cleared. The Job ranges over kubernetes.nodeGroups at talos-reconcile-job.yaml:378, git diff df157da61..HEAD is exactly the eleven files this PR owns, and main's talos_reconcile_nodegroups_test.yaml is green. 195 tests in packages/apps/kubernetes, 9 in packages/apps/kubernetes-nodes, parity clean.
I agree with keeping the reservations in the hash. What is still missing is the consequence in "Upgrade impact": an instancetype edit rotates the name later, and the section only describes the one roll. Loud rather than silent, at least. With an instanceType group and no explicit resources, a missed lookup aborts the render at cluster.yaml:532, so a configRef that no Job will ever satisfy cannot be produced.
Pruning and the two literals in tests/talos_config_template_name_test.yaml:37,56 are unchanged. Both were follow-ups.
Hash behaviour
Rendered the chart against changed values to see what the hash tracks. Management cluster-domain rotates the name, 35293f to 4cad8d, which is the #3515 case. Memory rotates it through the reservations, gpus through nodeLabels. diskSize and maxReplicas leave it alone, and diskSize rotates the KubevirtMachineTemplate hash instead. Behaves as described.
Your rollout evidence
It supports the mechanism about as well as anything short of an e2e run can: a KubevirtMachineTemplate rotation and a bootstrap.configRef rotation both sit in MachineDeployment.spec.template.spec and take the same rollout path. Put the scarce-resource part into "Upgrade impact" instead of leaving it in a comment. Anyone upgrading a fleet with a GPU pool hits all three of those, and this PR is what starts the roll.
CI
"Build packages/apps/kubernetes" and "Build Talos" are red on denied: Anonymous users are only allowed read access on public repos at the image push. Fork path, not this change.
Merge order
Sequencing is my call, nothing to fix here. Merging ahead of #3571 switches a MachineDeployment from a hand-written TalosConfigTemplate to a rendered one, and a cluster running GPU workers on such a template loses its schematic when that happens, because the values surface to restore it exists only in #3571. #3571 first, or the two together.
…ash-name main landed 3a1292d (escape tenant values in the worker reconcile heredoc) and 58910c0 (registry mirror passthrough) on the machine-config block this branch relocates into _talosconfigtemplate.tpl, so the conflict is resolved by porting both commits into the helper rather than by picking a side. Keeping this branch's side alone would have reopened the injection in both charts and dropped the mirror feature. Ported into the helper, in the parent chart and copied verbatim into kubernetes-nodes so the two stay byte-identical: - talosVersion, installerRepository and schematicID take main's escape chain for backslash, dollar and backtick. - The `machine.registries.mirrors` block, escaped the same way. - The INVARIANT comment above `data:`. Reworded for its new home: the helper is where the next field gets added, the spec is nindented into the Job's heredoc by the caller rather than written there, and the comment now names the render-time-validated fields in both charts (cluster.yaml and nodegroup.yaml) because this file is shared. The sink is unchanged; what moved is where the escaping lives. Two consequences of the port, both real: - talos.registryMirrors is now inside the hashed spec, so changing it rotates the TalosConfigTemplate name and rolls the node group instead of applying only to nodes created later. Verified: the MachineDeployment configRef goes t-md0-35293f to t-md0-49ef3d on setting a mirror, and to t-md0-ef9cc5 on changing it. README.md said the opposite and is corrected. - The byte-identity claim was measured against a main that no longer exists, so it was rerun. The machine config this branch renders is byte-identical to what upstream/main renders for the same values on default values (92 lines), a GPU node group (102) and a set registryMirrors (97). hack/talos-reconcile-heredoc_test.bats passes unmodified, all five cases including the hostile-registryMirrors and hostile-image-coordinates ones, which is the execution-level evidence that the escaping survived the move. 209 tests in packages/apps/kubernetes, 15 in packages/apps/kubernetes-nodes, GOLDEN PARITY clean, make generate leaves no drift. Assisted-By: Claude <noreply@anthropic.com> Signed-off-by: Mattia Eleuteri <mattia@hidora.io>
|
Blocker addressed. Both commits are ported into In the helper, in the parent chart and copied verbatim into The execution-level evidence is that You were right on both consequences.
And the byte-identity claim needed rerunning, since it was measured against a Both "Upgrade impact" gaps are filled. The section now says the one roll is not the only one: an instancetype edit rotates the name later for a group sized by Suites after the merge: 209 in Pruning and the two hand-maintained literals in |
|
NOT LGTM. The #3513 port is done and I verified it properly this time, so that blocker is closed. What is left is that the new invariant this PR creates, two templates computing the same name, is guarded in the parent chart and not guarded in Blocker: the hash input is assembled twice in
|
Aleksei Sviridkin (lexfrei)
left a comment
There was a problem hiding this comment.
One blocker, in the guard rather than in the render.
In kubernetes-nodes the content hash input is assembled twice: nodegroup.yaml builds its dict from ten keys, talos-reconcile-job.yaml builds a separate one from four. Both feed kubernetes.talosConfigTemplateHash. The render is shared, the input assembly is not. In the parent chart this cannot happen, since both sites take the same $group from kubernetes.nodeGroups, so the claim that name divergence is structurally impossible holds for one of the two charts.
Removing "gpus" .Values.gpus from the Job dict, one line, leaves the suite green at 15/15 and render-parity.sh green, while a group with a GPU renders TCT_NAME=kubernetes-myk8s-md0-ffdbe1 against configRef.name=kubernetes-myk8s-md0-0bbd2a. That is the exact templates do not exist deadlock this PR exists to prevent. The cause is fixture shape: the only literal pair in kubernetes-nodes renders with every relevant value falsy, so the divergence has nothing to bite on. The same mutation in the parent chart does go red, because that one has a GPU pair.
Today the two dicts agree and the rendered output is correct, so this is a hole in the guard rather than a live defect. I am still marking it blocking because the PR introduces the invariant and states its structural guarantee, and in half the cases nothing enforces it.
Details, including the interaction with #3571, are in the comment above.
What this PR does
Fixes #3515.
TalosConfigTemplate.specis immutable — thevtalosconfigtemplate.cluster.x-k8s.iowebhook denies any mutation withTalosConfigTemplate.Spec is immutable— but thetalos-reconcileJob applied it under a fixed<release>-<group>name on every reconcile. Once the template existed, no change to the rendered worker machine config could ever reach the cluster: the apply was rejected server-side while thekubernetes-*HelmRelease stayedReady. Reported withmachine.network.searchDomainsafter aclusterDomaincorrection; the same held forcertSANs,machine.registriesand nameservers.TalosConfigTemplate<release>-<group>-<6-char hash of its spec>, mirroring theKubevirtMachineTemplatecontent-hash idiom already used intemplates/cluster.yaml, and pointMachineDeployment.spec.template.spec.bootstrap.configRefat that name. A content change now creates a new template instead of attempting a rejected mutation, and CAPI rolls the workers onto it._talosconfigtemplate.tpl) shared by the two consumers that have to agree on the name byte-for-byte: the Job, which embeds it in the heredoc itkubectl applys, and theMachineDeployment, which hashes it intoconfigRef. Rendering it in one place makes a name divergence — which would leave CAPI blocked ontemplates do not existforever — structurally impossible. This also removes the duplicated kubelet-reservation computation that previously lived in the Job (net −274 lines in the tracked templates).${TALOS_CA_B64},${SVC_IP},${COREDNS_IP}, tokens) stay shell placeholders and are deliberately not part of the hash: they are facts of an already-provisioned cluster, not chart inputs, so a certificate rotation or a Service re-address does not roll workers.packages/apps/kubernetes-nodes, which carries the identical bug for split-out worker pools.tests/render-parity.shcompares theMachineDeploymentacross both charts, so the two charts must (and do) compute the same name for the same pool shape;make updatenow copies_talosconfigtemplate.tplfrom the parent chart alongsideversions.yaml/kubectl.tag.kubernetes.nodeGroupshelper instead of.Values.nodeGroupsdirectly, the same sourcecluster.yamluses. Two different group sources could yield two different hashes, and it also means an install with an emptynodeGroupsnow gets a reconcile Job for the defaultmd0group (previously the chart rendered that group'sMachineDeploymentbut no Job, so no template was ever created).Upgrade impact — please read
Existing clusters roll their Talos workers once. The
configRefmoves from<release>-<group>to the hashed name; CAPI creates a newMachineSetfor it and rolls machines onto it under the existingRollingUpdatestrategy (maxSurge: maxReplicas,maxUnavailable: 1) plus the group'sMachineHealthCheck. The rendered machine config itself is byte-identical tomainfor the same values (verified by diffing the rendered output), so this particular roll delivers no config change — it is the one-time cost of adopting the content-hash name, the same costKubevirtMachineTemplatealready paid. Every subsequent machine-config change then propagates instead of being silently dropped.Between the Helm upgrade and the Job creating the new template, the
MachineDeploymentreportscannot create a new MachineSet when templates do not exist; existing workers are untouched during that window. The pre-existing fixed-name template is not deleted — the outgoingMachineSetstill references it, and it is garbage-collected with theKamajiControlPlanewhen the cluster is deleted. Consequently hashed templates accumulate, one per distinct machine config, all owned by theKamajiControlPlane; nothing prunes them, since deleting a template a liveMachineSetmay still clone from would be unsafe.The one roll is not the only one. Hashing the whole rendered spec means anything inside it becomes a roll trigger, including two things that are not edits to this cluster's
Kubernetesresource. For a node group sized byinstanceType, the kubelet reservations in the spec come from a livelookupof theVirtualMachineClusterInstancetype, so a later platform-side edit to that instancetype rotates the name and rolls every group referencing it. The built-inmd0group is exactly that shape (instanceType: u1.medium, emptyresources). And since this branch mergedmain,talos.registryMirrorsis inside the hashed spec too, so setting or changing a mirror now rolls the group rather than applying only to nodes created later (README.mdsaid the opposite and is corrected in this PR). Both are the fix working as intended — a machine-config change reaching the workers is the whole point — but they are roll triggers that did not exist before, and theKubevirtMachineTemplatehash this mirrors has neither, because it embeds the instancetype by name and never its resolved size.The roll is not free on a node group holding a scarce resource. From exercising this same rollout path on a production fleet of 13 tenant clusters, by rotating the
KubevirtMachineTemplatehash on a GPU node group.maxSurge: maxReplicasis dangerous when the resource is constrained: with 6 GPUs and 1 free, CAPI created all 5 new machines at once and 3 satPendingonInsufficient nvidia.com/..., each having already imported a 200 GiB disk. It converges, but it wastes a lot of import. The natural reflex,maxSurge: 0withmaxUnavailable: 1, deadlocks instead: CAPI computesmaxScaledDown = available - (desired - maxUnavailable), which was4 - 4 = 0, so it removed no old machine while the new ones waited for exactly those machines to release their GPUs; nothing moved untilmaxUnavailablewas loosened to 2. And theMachineHealthCheckamplifies both — atmaxUnhealthy: 100%andnodeStartupTimeout: 10m, machines queuing for a GPU were declared unhealthy and remediated in a loop, three deleted and recreated while perfectly healthy, each iteration re-importing the disk. The per-node-groupnodeStartupTimeoutoverride fixes that, but the default is shorter than a plausible queue wait. Anyone upgrading a fleet with a GPU pool hits all three, and this PR is what starts the roll.Validation
helm unittestinpackages/apps/kubernetes(209 tests) andpackages/apps/kubernetes-nodes(15 tests) — pass, main'sregistry_mirrors_test.yamlandserial_console_log_test.yamlincluded. New suites pin the name agreement between the Job'sTCT_NAMEand theMachineDeployment'sconfigRefas a shared literal, and pin that a machine-config change (GPU node labels) rotates it on both objects. The two golden Job-name hashes intalos_templates_test.yamlwere updated (the Job spec changed).hack/helm-unit-tests.sh(whole tree, includeskubernetes-nodes'render-parity.sh) — pass,GOLDEN PARITY: all pool objects byte-identical across all casesacross theresources,gpuandkubelet-override cases, which is what proves both charts compute the same template name.hack/cozytest.sh hack/talos-reconcile-heredoc_test.bats— pass, all five cases unmodified frommain. This is the execution-level evidence thatmain's escaping survived the move into_talosconfigtemplate.tpl: it renders both charts with a hostileregistryMirrorsendpoint and hostile Talos image coordinates, runs the extracted heredoc through a real shell, and asserts the values come out literal rather than command-substituted. A rendered-string regex cannot catch a heredoc the shell refuses to emit; this does.make generatein both packages — no diff.make rd-presets-checkandmake go-unit-tests— pass.helm templatediffed againstmainfor the same values, rerun against currentmainafter the merge since the earlier measurement was taken against amainthat no longer exists: the only changes are the template name, the newTCT_NAMEenv var and comments; the machine config the Job applies is byte-identical on default values (92 lines), on a GPU node group (102) and withtalos.registryMirrorsset (97). The rendered Job command passessh -n, and the heredoc it emits parses as valid YAML (including the nesteddata:machine config) after substituting the shell variables._cluster["cluster-domain"]rotates every group's name — the exact scenario from the issue that previously could not propagate.e2e.sh/ chainsaw needs bare-metal nodes). The upgrade sequence above is derived from CAPI's documentedMachineDeploymentrollout behaviour and the chart's existingKubevirtMachineTemplateprecedent, not observed end to end.Release note
Summary by CodeRabbit