fix(consul): normalize cpu limit to canonical string form
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful

1000m is equivalent to 1 CPU, but Kubernetes normalizes it to "1" on
write. ArgoCD string-compares desired vs live, causing permanent
OutOfSync on the consul-server StatefulSet. Same root cause as #163.
This commit is contained in:
2026-05-24 23:48:57 +10:00
parent dd282f59fb
commit 2a5c80a357
+1 -1
View File
@@ -37,7 +37,7 @@ server:
cpu: 100m
limits:
memory: 2Gi
cpu: 1000m
cpu: "1"
client:
enabled: false