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 sidecar container cpu limit #557

Merged
merged 1 commit into from Nov 3, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file modified charts/latest/blob-csi-driver-v1.6.0.tgz
Binary file not shown.
Expand Up @@ -55,7 +55,7 @@ spec:
- "-v=2"
- "--csi-address=$(ADDRESS)"
- "--leader-election"
- "--timeout=60s"
- "--timeout=120s"
- "--extra-create-metadata=true"
env:
- name: ADDRESS
Expand Down
6 changes: 3 additions & 3 deletions charts/latest/blob-csi-driver/values.yaml
Expand Up @@ -49,7 +49,7 @@ controller:
resources:
csiProvisioner:
limits:
cpu: 100m
cpu: 200m
memory: 300Mi
requests:
cpu: 10m
Expand All @@ -70,7 +70,7 @@ controller:
memory: 20Mi
csiResizer:
limits:
cpu: 100m
cpu: 200m
memory: 300Mi
requests:
cpu: 10m
Expand Down Expand Up @@ -111,7 +111,7 @@ node:
memory: 20Mi
nodeDriverRegistrar:
limits:
cpu: 100m
cpu: 200m
memory: 100Mi
requests:
cpu: 10m
Expand Down
6 changes: 3 additions & 3 deletions deploy/csi-blob-controller.yaml
Expand Up @@ -33,7 +33,7 @@ spec:
- "-v=2"
- "--csi-address=$(ADDRESS)"
- "--leader-election"
- "--timeout=60s"
- "--timeout=120s"
- "--extra-create-metadata=true"
env:
- name: ADDRESS
Expand All @@ -43,7 +43,7 @@ spec:
name: socket-dir
resources:
limits:
cpu: 100m
cpu: 200m
memory: 300Mi
requests:
cpu: 10m
Expand Down Expand Up @@ -123,7 +123,7 @@ spec:
mountPath: /csi
resources:
limits:
cpu: 100m
cpu: 200m
memory: 300Mi
requests:
cpu: 10m
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-blob-node.yaml
Expand Up @@ -82,7 +82,7 @@ spec:
mountPath: /registration
resources:
limits:
cpu: 100m
cpu: 200m
memory: 100Mi
requests:
cpu: 10m
Expand Down