fix(komoplane): set replicaCount to integer + kagentFix annotation [kagent/aire-agent] #5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
RCA:
The HelmRelease test/komoplane-20 failed during Helm install because the chart rendered a Deployment
with spec.replicas set to a string value. The HelmRelease contained
replicaCount: o1(letter 'o' + 1)which is a string. Kubernetes expects replicas to be an integer (int32). The helm-controller reported:
Remediation implemented:
replicaCount: o1with integerreplicaCount: 1in apps/overlay/control-cluster/hr-failed.yaml.kagentFix=2025-09-17T08:58:30Zper agent requirements.Why this fix is safe:
Next steps and verification:
localbranch. Flux will pick up the change and re-apply the HelmRelease.test:kubectl -n test get hr komoplane-20 -o yamland confirm Ready condition.helm templatelocally against the chart version 0.1.6 and the provided values.Fix applied by AI agent: [kagent/aire-agent]