-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KONFLUX-5674: Adding Resource Requests and Limits (#5344)
This Pull request will add the resource requests and limits for the following resources that are created by external-secrets operator - 1. Cert Manager 2. Webhook 3. Controller Manager 4. External Secret Deployment Signed-off-by: Manish Kumar <[email protected]>
- Loading branch information
1 parent
3360fc0
commit aba7ba2
Showing
3 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
components/external-secrets-operator/staging/resource-requests.patch.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
apiVersion: operator.external-secrets.io/v1alpha1 | ||
kind: OperatorConfig | ||
metadata: | ||
name: cluster | ||
spec: | ||
certController: | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
limits: | ||
memory: 512Mi | ||
webhook: | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
limits: | ||
memory: 512Mi | ||
manager: | ||
resources: | ||
requests: | ||
cpu: 200m | ||
memory: 256Mi | ||
limits: | ||
memory: 512Mi |