Skip to content

Commit

Permalink
chore: increase resource requests
Browse files Browse the repository at this point in the history
  • Loading branch information
msvticket committed Oct 10, 2024
1 parent b5ba2e4 commit a97e70a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ builds:
# Defaults are 386 and amd64.
goarch:
- amd64
- arm
- arm64

ignore:
- goos: windows
goarch: arm64
archives:
- name_template: "jx-secret-{{ .Os }}-{{ .Arch }}"
format_overrides:
Expand Down
5 changes: 4 additions & 1 deletion .lighthouse/jenkins-x/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ spec:
name: ""
resources: {}
- name: make-lint
resources: {}
resources:
requests:
cpu: 1400m
memory: 4400Mi
podTemplate: {}
serviceAccountName: tekton-bot
timeout: 1h30m0s
Expand Down
6 changes: 5 additions & 1 deletion .lighthouse/jenkins-x/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ spec:
- name: build-make-test
resources: {}
- name: build-container-build
resources: {}
resources:
# override requests for the pod here
requests:
cpu: 1400m
memory: 600Mi
podTemplate: {}
serviceAccountName: tekton-bot
timeout: 2h0m0s
Expand Down
6 changes: 5 additions & 1 deletion .lighthouse/jenkins-x/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ spec:
name: build-and-push-sbom
resources: {}
- name: upload-binaries
resources: {}
resources:
# override requests for the pod here
requests:
cpu: 1400m
memory: 600Mi
- name: promote-release
resources: {}
podTemplate: {}
Expand Down

0 comments on commit a97e70a

Please sign in to comment.