fix(ci): use milliCPU units for goreleaser resource requests
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user