fix(consul): normalize cpu limit to canonical string form #164
Reference in New Issue
Block a user
Delete Branch "benvin/consul-outsync-fix"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
server.resources.limits.cpufrom1000mto"1"in consul Helm valuesWhy
1000m(1000 milliCPU) is equivalent to1CPU, but Kubernetes normalizes the value to"1"when storing. ArgoCD diffs desired vs live by string comparison, so the mismatch causes a permanent OutOfSync on theconsul-serverStatefulSet. Same root cause as #163.