forked from kubernetes/ingress-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Helm - Enable configuring request and limit for containers in webhook…
… jobs (kubernetes#7434) * helm: add feature to configure request and limit for container in createSecret and patchWebhook job Signed-off-by: Bhumij Gupta <[email protected]> * Remove empty line in helm template Signed-off-by: Bhumij Gupta <[email protected]> * Add test for admission webhook job container resources Signed-off-by: Bhumij Gupta <[email protected]> * Add new line character at the end of charts ci file Signed-off-by: Bhumij Gupta <[email protected]>
- Loading branch information
1 parent
4cc87a2
commit 97a0cf0
Showing
4 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
charts/ingress-nginx/ci/deployment-webhook-resources-values.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,23 @@ | ||
controller: | ||
service: | ||
type: ClusterIP | ||
admissionWebhooks: | ||
enabled: true | ||
createSecretJob: | ||
resources: | ||
limits: | ||
cpu: 10m | ||
memory: 20Mi | ||
requests: | ||
cpu: 10m | ||
memory: 20Mi | ||
patchWebhookJob: | ||
resources: | ||
limits: | ||
cpu: 10m | ||
memory: 20Mi | ||
requests: | ||
cpu: 10m | ||
memory: 20Mi | ||
patch: | ||
enabled: true |
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
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