Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: increase snapshot container memory limit #2677

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ The following table lists the configurable parameters of the latest Azure Disk C
| `controller.resources.csiResizer.limits.memory` | csi-resizer memory limits | 500Mi |
| `controller.resources.csiResizer.requests.cpu` | csi-resizer cpu requests | 10m |
| `controller.resources.csiResizer.requests.memory` | csi-resizer memory requests | 20Mi |
| `controller.resources.csiSnapshotter.limits.memory` | csi-snapshotter memory limits | 500Mi |
| `controller.resources.csiSnapshotter.limits.memory` | csi-snapshotter memory limits | 400Mi |
| `controller.resources.csiSnapshotter.requests.cpu` | csi-snapshotter cpu requests | 10m |
| `controller.resources.csiSnapshotter.requests.memory` | csi-snapshotter memory requests | 20Mi |
| `controller.resources.livenessProbe.limits.memory` | liveness-probe memory limits | 100Mi |
Expand Down Expand Up @@ -204,7 +204,7 @@ The following table lists the configurable parameters of the latest Azure Disk C
| `snapshot.snapshotController.annotations` | snapshot controller deployment extra annotations | `{}`
| `snapshot.snapshotController.podLabels` | snapshot controller pods extra labels | `{}`
| `snapshot.snapshotController.podAnnotations` | snapshot controller pods extra annotations | `{}`
| `snapshot.snapshotController.resources.limits.memory` | csi-snapshot-controller memory limits | 100Mi |
| `snapshot.snapshotController.resources.limits.memory` | csi-snapshot-controller memory limits | 500Mi |
| `snapshot.snapshotController.resources.requests.cpu` | csi-snapshot-controller cpu requests | 10m |
| `snapshot.snapshotController.resources.requests.memory` | csi-snapshot-controller memory requests | 20Mi |
| `linux.enabled` | whether enable linux feature | `true` |
Expand Down
Binary file modified charts/latest/azuredisk-csi-driver-v0.0.0.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions charts/latest/azuredisk-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ controller:
memory: 20Mi
csiSnapshotter:
limits:
memory: 200Mi
memory: 400Mi
requests:
cpu: 10m
memory: 20Mi
Expand Down Expand Up @@ -151,7 +151,7 @@ snapshot:
podAnnotations: {}
resources:
limits:
memory: 300Mi
memory: 500Mi
requests:
cpu: 10m
memory: 20Mi
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azuredisk-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ spec:
mountPath: /csi
resources:
limits:
memory: 200Mi
memory: 400Mi
requests:
cpu: 10m
memory: 20Mi
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-snapshot-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
- "--leader-election-namespace=kube-system"
resources:
limits:
memory: 300Mi
memory: 500Mi
requests:
cpu: 10m
memory: 20Mi
Expand Down
Loading