Private
Public Access
1
0

fix(ci): use milliCPU units for goreleaser resource requests
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

CPU values 6000/10000 were interpreted as whole cores (not millicores),
making the pod unschedulable on any node.
This commit is contained in:
2026-03-07 21:17:03 -08:00
parent 27add1fb3d
commit c9b8348ead

View File

@@ -50,11 +50,11 @@ steps:
kubernetes:
resources:
requests:
cpu: 6000
memory: 1024Mi
cpu: 6000m
memory: 1Gi
limits:
cpu: 10000
memory: 4096Mi
cpu: 10000m
memory: 4Gi
depends_on: [test]
- name: generate-tags