diff --git a/apps/fc-distribution/fc-distribution.yaml b/apps/fc-distribution/fc-distribution.yaml index baa40de..d331bd8 100644 --- a/apps/fc-distribution/fc-distribution.yaml +++ b/apps/fc-distribution/fc-distribution.yaml @@ -266,8 +266,12 @@ spec: kind: ClusterIssuer dnsNames: - dist.iamworkin.lan - duration: 2160h # 90d - renewBefore: 720h # 30d + # step-ca ACME caps lifetime at 30d; requesting 90d silently capped + # made renewBefore=cert-lifetime → perpetual renewal loop (10880+ CRs + # in 18h on 2026-05-07). Match working 720h/240h pattern from other + # FC services. + duration: 720h # 30d (step-ca cap) + renewBefore: 240h # 10d --- apiVersion: traefik.io/v1alpha1 kind: IngressRoute diff --git a/apps/knowledge/knowledge.yaml b/apps/knowledge/knowledge.yaml index 35497d9..797997d 100644 --- a/apps/knowledge/knowledge.yaml +++ b/apps/knowledge/knowledge.yaml @@ -241,8 +241,12 @@ spec: kind: ClusterIssuer dnsNames: - knowledge.iamworkin.lan - duration: 2160h # 90d - renewBefore: 720h # 30d + # step-ca ACME caps lifetime at 30d; requesting 90d silently capped + # made renewBefore=cert-lifetime → perpetual renewal loop (10888+ CRs + # in 18h on 2026-05-07). Match working 720h/240h pattern from other + # FC services. + duration: 720h # 30d (step-ca cap) + renewBefore: 240h # 10d --- apiVersion: traefik.io/v1alpha1 kind: IngressRoute diff --git a/apps/worldbuilder/worldbuilder.yaml b/apps/worldbuilder/worldbuilder.yaml index 5c35f39..17edc48 100644 --- a/apps/worldbuilder/worldbuilder.yaml +++ b/apps/worldbuilder/worldbuilder.yaml @@ -187,8 +187,13 @@ spec: kind: ClusterIssuer dnsNames: - worldbuilder.iamworkin.lan - duration: 2160h # 90d - renewBefore: 720h # 30d + # step-ca ACME provisioner caps lifetime at 30d. Requesting 90d + # silently capped to 30d, making renewBefore 720h (30d) equal to the + # actual cert lifetime — triggered a perpetual renewal loop that + # generated 2365+ CertificateRequest objects in 18h. Match the working + # 720h/240h pattern used by every other FC service cert. + duration: 720h # 30d (step-ca cap) + renewBefore: 240h # 10d --- apiVersion: traefik.io/v1alpha1 kind: IngressRoute