Skip to content

Commit

Permalink
feat: increase limits
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Jun 22, 2024
1 parent aa9ab28 commit 75886a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Helm chart to deploy Karpenter to auto-scale EKS clusters

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| al2 | object | `{"disruption":{"budgets":[{"nodes":"20%"}],"consolidationPolicy":"WhenUnderutilized","expireAfter":"720h"},"enable":false,"limits":{"cpu":"50","memory":"100Gi"},"requirements":[]}` | Values to control Amazon Linux 2 (AL2) provisioners |
| al2 | object | `{"disruption":{"budgets":[{"nodes":"20%"}],"consolidationPolicy":"WhenUnderutilized","expireAfter":"720h"},"enable":false,"limits":{"cpu":"100","memory":"200Gi"},"requirements":[]}` | Values to control Amazon Linux 2 (AL2) provisioners |
| al2.disruption | object | `{"budgets":[{"nodes":"20%"}],"consolidationPolicy":"WhenUnderutilized","expireAfter":"720h"}` | Control how the provisioner handles disruptions |
| al2.disruption.budgets | list | `[{"nodes":"20%"}]` | Budgets to use for consolidating resources |
| al2.disruption.consolidationPolicy | string | `"WhenUnderutilized"` | Consolidation policy to use |
| al2.disruption.expireAfter | string | `"720h"` | Time to wait before expiring resources (will automatically restart nodes periodically) |
| al2.enable | bool | `false` | Enable the AL2 Provisioner |
| al2.limits | object | `{"cpu":"50","memory":"100Gi"}` | Total limits that the provisioner can provision |
| al2.limits.cpu | string | `"50"` | Maximum CPU that the provisioner can provision |
| al2.limits.memory | string | `"100Gi"` | Maximum memory that the provisioner can provision |
| al2.limits | object | `{"cpu":"100","memory":"200Gi"}` | Total limits that the provisioner can provision |
| al2.limits.cpu | string | `"100"` | Maximum CPU that the provisioner can provision |
| al2.limits.memory | string | `"200Gi"` | Maximum memory that the provisioner can provision |
| al2.requirements | list | `[]` | Requirement for the AL2 provisioner |
| bottlerocket | object | `{"disruption":{"budgets":[{"nodes":"20%"}],"consolidationPolicy":"WhenUnderutilized","expireAfter":"720h"},"enable":false,"limits":{"cpu":"50","memory":"100Gi"},"requirements":[]}` | Values to control Bottlerocket provisioners |
| bottlerocket.disruption | object | `{"budgets":[{"nodes":"20%"}],"consolidationPolicy":"WhenUnderutilized","expireAfter":"720h"}` | Control how the provisioner handles disruptions |
Expand Down
4 changes: 2 additions & 2 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ al2:
# -- Total limits that the provisioner can provision
limits:
# -- Maximum CPU that the provisioner can provision
cpu: "50"
cpu: "100"
# -- Maximum memory that the provisioner can provision
memory: 100Gi
memory: 200Gi
# -- Control how the provisioner handles disruptions
disruption:
# -- Consolidation policy to use
Expand Down

0 comments on commit 75886a9

Please sign in to comment.