Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
fix(k8s): reduce cpu reservation
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon authored Oct 24, 2022
1 parent 9171590 commit fc89f16
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .kube-workflow/values.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ module.exports = (values) => {
: values.global.isPreProd
? `sre-faas-${name}-preprod.${values.global.domain}`
: `sre-faas-${name}-${values.global.branchSlug}.${values.global.domain}`,
resources: {
requests: {
cpu: 0.05,
memory: "64Mi"
},
limits: {
cpu: 0.5,
memory: "256Mi"
},
},
};
});

Expand Down

0 comments on commit fc89f16

Please sign in to comment.