Skip to content

Commit a97bc4b

Browse files
committed
fix: set gcsfuse sidecar resource limit 0
This way it's unset and not limited
1 parent 1af3b93 commit a97bc4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.infra/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ if (!isAdhocEnv) {
228228
podAnnotations['gke-gcsfuse/volumes'] = 'true';
229229
podAnnotations['gke-gcsfuse/cpu-request'] = '10m';
230230
podAnnotations['gke-gcsfuse/memory-request'] = '32Mi';
231-
podAnnotations['gke-gcsfuse/cpu-limit'] = '100m';
232-
podAnnotations['gke-gcsfuse/memory-limit'] = '128Mi';
231+
podAnnotations['gke-gcsfuse/cpu-limit'] = '0';
232+
podAnnotations['gke-gcsfuse/memory-limit'] = '0';
233233
}
234234

235235
const jwtEnv = [

0 commit comments

Comments
 (0)