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:
|
kubernetes:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 6000
|
cpu: 6000m
|
||||||
memory: 1024Mi
|
memory: 1Gi
|
||||||
limits:
|
limits:
|
||||||
cpu: 10000
|
cpu: 10000m
|
||||||
memory: 4096Mi
|
memory: 4Gi
|
||||||
depends_on: [test]
|
depends_on: [test]
|
||||||
|
|
||||||
- name: generate-tags
|
- name: generate-tags
|
||||||
|
|||||||
Reference in New Issue
Block a user